devjpl / laravel-curd
laravel CURD 生成器
dev-master
2020-05-03 04:02 UTC
Requires
- php: >=7
- laravel/framework: >=6
This package is auto-updated.
Last update: 2024-09-29 05:55:39 UTC
README
Currently Under Testing, Production Version Release Soon
安装
composer require devjpl/laravel-curd
安装
composer require devjpl/laravel-curd
将以下行添加到 config/app.php 文件的 'providers' 数组中
CrudGenerator\CrudGeneratorServiceProvider::class,
用法
使用所需模型名称作为输入
员工表的 CRUD
php artisan make:crud employee
或整个数据库
php artisan make:crud all
更多选项
php artisan help make:crud