建立项目:composer create-project laravel/laravel xcblog
composer create-project laravel/laravel=5.1.* xcblog --prefer-dist 制定lar版本为5.1
修改storage文件权限为777
chmod -R 777 storage
修改项目名称:php artisan app:name xcblog 提示:Application namespace set! 修改了现有的Model的namespace为xcblog
使用composer 建立 数据库文件 model controller view 文件;
1:建立 数据库文件:
创建article 表 php artisan make:migration create_articles_table --create=articles
创建pages单页面数据 php artisan make:migration create_pages_table --create=pages
创建pages单页面数据 php artisan make:migration create_categories_table --create=categories
执行插入数据库:php artisan migrate
2:创建model
php artisan make:model Article
php artisan make:model Page
php artisan make:model Category
3:数据填充
创建填充文件
修改 DatabaesSeeder.php
插入
$this->call(PageTableSeeder::class);
执行填充命令;
composer dump-autoload
php artisan db:seed
4:创建控制器
php artisan make:controller Admin/AdminHomeController
5:创建视图