a2design/extended-crud
Composer 安装命令:
composer require a2design/extended-crud
包简介
Extends templates compiling for appzcoder/crud-generator
README 文档
README
Extends templates compiling for appzcoder/crud-generator
Requirements
Laravel >=5.1
PHP >= 5.5.9
Installation
-
Run
composer require a2design/extended-crud -
Add service provider to /config/app.php file.
'providers' => [ ... A2Design\ExtendedCrud\ExtendedCrudServiceProvider::class, ],
-
Install laravelcollective/html package for form & html.
- Run
composer require laravelcollective/html // For laravel 5.1 composer require laravelcollective/html "5.1.*"- Add service provider & aliases to /config/app.php file.
'providers' => [ ... Collective\Html\HtmlServiceProvider::class, ], // Use the lines below for "laravelcollective/html" package otherwise remove it. 'aliases' => [ ... 'Form' => Collective\Html\FormFacade::class, 'HTML' => Collective\Html\HtmlFacade::class, ],
-
Run composer dump-autoload
-
Publish config file & generator template files.
php artisan vendor:publish
Note: You should have configured database for this operation.
Commands
See docs of original generator
统计信息
- 总下载量: 50
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-05-15