ur13l / api-crud-generator
Controller generator for Laravel based on the models available in your project.
Installs: 3 666
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 2
Requires
- krlove/code-generator: ^1.0
- laravel/framework: ^5.0
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,