devjpl / laravel-curd
laravel CURD Generator
dev-master
2020-05-03 04:02 UTC
Requires
- php: >=7
- laravel/framework: >=6
This package is auto-updated.
Last update: 2025-06-29 01:42:21 UTC
README
Currently Under Testing, Production Version Release Soon
Installing
composer require devjpl/laravel-curd
Installing
composer require devjpl/laravel-curd
Add to config/app.php the following line to the 'providers' array:
CrudGenerator\CrudGeneratorServiceProvider::class,
Usage
Use the desired model name as the input
CRUD for employees table
php artisan make:crud employee
or the whole database
php artisan make:crud all
For more options
php artisan help make:crud