Ryan Mitchell
Ryan Mitchell
@jasonvarga Just looping back to this one. I've fixed up the merge conflicts and tests are passing. Would you have time to do another review of it?
I think the issue may be with the docs on this... on[ this page](https://statamic.dev/tips/storing-users-in-a-database) it says "In config/statamic/stache.php, comment out the users store." That means the stache config still has...
The parent data has been abstracted away from being stored on Entries and moved to the Tree structures. So something like the following should work: ``` $pages = Collection::findByHandle('destinations') ->structure()...
When you click Manage Stock - in the admin panel - what does that show?
Lets also add changing all events to be classes as per https://laravel.com/docs/8.x/events#defining-events it will be a breaking change, but we can afford to do that on a major version
> Is good idea pass to bootstrap 5 the orange theme. Do you mean use bootstrap 5 instead of 4?
Are there any errors in your browser developer console?
The main reason behind doing this is to make the files PSR-4 compatible, which the currently aren't. If you try and include the 'modules' into any other application it fails...
Without the changes (so as things stand) you cant actually include the packages on another project which means splitting them out as modules has no benefit. My hope had been...
Im not so bothered with making them work independently of each other, but making the whole codebase a package so it can exist alongside other packages inside an app. I...