dwijitsolutions / laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin Backend, Data Management Tool or CRM boilerplate for Laravel with features like Advanced CRUD Generation, Module Manager, Backups and many more.
http://laraadmin.com
MIT License
1.58k stars 537 forks source link

Where are the generated controllers? #168

Open mustafa-qamaruddin opened 7 years ago

mustafa-qamaruddin commented 7 years ago

I run the command $ php artisan la:crud Clusters

First Issue: Then I can not find the controllers => where should it be located for editing?

Second Issue: I have to run the following in order for the crud to work: $ composer dump-autoload $ php artisan migration:refresh $ php artisan la:install $ php artisan la:crud Clusters

Then , it works, since I have a fresh project, it's okay, but when I do a lot of editing and overriding, then all my changes will be lost? How can I avoid this problem in the future?

azarzaza commented 7 years ago

They are located in app/http/controller

On Feb 21, 2017 6:56 PM, "Mustafa Qamar-ud-Din" notifications@github.com wrote:

I run the command $ php artisan la:crud Clusters

First Issue: Then I can not find the controllers => where should it be located for editing?

Second Issue: I have to run the following in order for the crud to work: $ composer dump-autoload $ php artisan migration:refresh $ php artisan la:install $ php artisan la:crud Clusters

Then , it works, since I have a fresh project, it's okay, but when I do a lot of editing and overriding, then all my changes will be lost? How can I avoid this problem in the future?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/dwijitsolutions/laraadmin/issues/168, or mute the thread https://github.com/notifications/unsubscribe-auth/AWLoufeodN9ZOH6lRBCKLKinlw6xg0cwks5reuYAgaJpZM4MHT-_ .

mustafa-qamaruddin commented 7 years ago

Thank you