devjpl / laravel-curd
laravel CURD Generator
Installs: 37
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/devjpl/laravel-curd
Requires
- php: >=7
- laravel/framework: >=6
This package is auto-updated.
Last update: 2025-09-29 02:50:12 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