dottystyle/laravel-crud-generator is a Laravel package.
It currently has 1 GitHub stars and 2.553 downloads on Packagist (latest version 1.1.3).
Install it with composer require dottystyle/laravel-crud-generator.
Discover more Laravel packages by dottystyle
or browse all Laravel packages to compare alternatives.
Last updated
This package was created mainly for Dottystyle developers. The function of this package is to scaffold the very basic purpose of a CRUD. It creates the following:
Install the package
$ composer require dottystyle/laravel-crud-generator
Publish vendor
$ php artisan vendor:publish --provider="Dottystyle\LaravelCrudGenerator\Providers\LaravelCrudGeneratorServiceProvider"
Edit config/app.php (Add the following)
service provider:
Dottystyle\LaravelCrudGenerator\Providers\LaravelCrudGeneratorServiceProvider::class,
Building CRUD for api resources
php artisan make:crud ModelName --api
Building a simple CRUD
php artisan make:crud ModelName
Building a simple CRUD with service
php artisan make:crud ModelName --with-service
Building a simple Service with Interface
php artisan make:service ServiceName