rakete
rakete

Reputation: 3051

Split Laravel 5.3 app in packages

How do I split an app into different modules/packages?

At the moment I plan the following packages:

Upvotes: 1

Views: 334

Answers (1)

Houssain Amrani
Houssain Amrani

Reputation: 329

You can split your laravel app using a specific package called Lpackager.

  1. Easy to use.
  2. Generate your package via an artisan command php artisan lpackager:package <PackageName> <PackagePath> <"NameSpace">
  3. Ability to generate CRUD for your packages/modules using scaffold-interface.

Upvotes: 1

Related Questions