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

This package is not auto-updated.

Last update: 2024-03-23 13:39:08 UTC


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,