kepex/laravel-crud-generator
最新稳定版本:v0.1.8
Composer 安装命令:
composer require kepex/laravel-crud-generator
包简介
php artisan command to generate fully working crud with grid paginated server side only by having database tables
README 文档
README
php artisan command to generate fully working crud with grid paginated server side only by having database tables
Installing
php composer.phar require kepex/laravel-crud-generator
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 students table
php artisan make:crud student
or the whole database
php artisan make:crud all
whole database with custom layout
php artisan make:crud all --master-layout=layouts.master
Because sometimes you need boilerplate code only for view and controller, you can use an existing model with custom controller name
php artisan make:crud student --master-layout=master --custom-controller=dashboard
For more options
php artisan help make:crud
Custom Templates
The best power of this plugin relies on you making your own templates and generating the code the way you like
Run this command:
php artisan vendor:publish
and you will have now in resources/templates/ the files you need to modify
If you want to go back to the default, just delete them
Let me know if you have any questions or if you find this library useful at twitter @kEpEx
统计信息
- 总下载量: 16.39k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 102
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-12-07
