ur13l / api-crud-generator
Controller generator for Laravel based on the models available in your project.
1.1.2
2018-02-28 18:52 UTC
Requires
- krlove/code-generator: ^1.0
- laravel/framework: ^5.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Automatic controller generator for Laravel based on the existing models in your project. You can get the default methods (store, update, destroy, show and index) in a controller and with default content for an API project just by executing:
php artisan crud:generate
Installation
Use composer to install this package:
$ composer require ur13l\api-crud-generator
You will need to add the service provider on your config/app.php file:
Ur13l\ApiCrudGenerator\Providers\ApiCrudGeneratorProvider::class,