多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# LaraCMS 集成了一个脚手架工具 Scaffold ### Run Artisan You're all set. Run `php artisan` from the console, and you'll see the new commands `make:laracms-administrator`. ## 示例 Use this command to generator scaffolding of **Project** in your project: > php artisan make:scaffold Projects --schema="name:string:index,description:text:nullable,subscriber_count:integer:unsigned:default(0)" This command will generate: ``` $ php artisan make:scaffold Projects --schema="name:string:index,description:text:nullable,subscriber_count:integer:unsigned:default(0)" ----------- scaffolding: Project ----------- + ./database/migrations/2017_04_17_065656_create_projects_table.php + ./database/factories/ModelFactory.php + ./database/seeds/ProjectsTableSeeder.php + ./database/seeds/DatabaseSeeder.php (Updated) x ./app/Models/Model.php (Skipped) + ./app/Models/Project.php + ./app/Http/Controllers/ProjectsController.php x ./app/Http/Requests/Request.php (Skipped) + ./app/Http/Requests/ProjectRequest.php + ./app/Observers/ProjectObserver.php + ./app/Providers/AppServiceProvider.php (Updated) x ./app/Policies/Policy.php + ./app/Policies/ProjectPolicy.php + ./app/Providers/AuthServiceProvider.php (Updated) + ./routes/web.php (Updated) --- Views --- + create_and_edit.blade.php + index.blade.php + show.blade.php x ./resources/views/error.blade.php Migrated: 2017_04_17_065656_create_projects_table ----------- -------------------- ----------- ----------- >DUMP AUTOLOAD< ----------- ```