Reputation: 3051
How do I split an app into different modules/packages?
At the moment I plan the following packages:
Upvotes: 1
Views: 334
Reputation: 329
You can split your laravel app using a specific package called Lpackager.
php artisan lpackager:package <PackageName> <PackagePath> <"NameSpace">
Upvotes: 1