Hi Laravel community,
What do you think about this command php artisan make:package that scaffolds a new package for you especially when you decide to make a big app with Laravel?
Is it a good idea?
@emilmoe I just wrote a new package last night that also can do that. (https://github.com/amranidev/lpackager) Now I'm Thinking about how we can use it with a scaffolder/(crud generator)
There used to be some workbench commands for that in Laravel 4, not sure where they are gone now.
Take a look here, seems like it's already done
I mean that we need a package that can be able to interact with laravel app contains (models views and controllers , routes). because we may get a lot of redundancy (models) especially when we made a big laravel app contains a lots of modules (business , HR, billing . etc)
Amrani Houssain
Web Developer
@emilmoe Just wrote two articles about Lpackager .
Split laravel app
CRUD for packages using scaffold-interface