Download Microsoft ODBC Driver 11 for SQL Server在 Windows 上快速安裝并運行 Laravel 5.x
http://www.golaravel.com/post/install-and-run-laravel-5-x-on-windows/
教程:
http://9iphp.com/web/laravel/laravel-5-routing-controller-and-views.html
如果在執(zhí)行遷移時發(fā)生「class not found」錯誤,試著先執(zhí)行 composer dump-autoload 命令后再進行一次
Composer安裝
如果正常安裝失敗,使用下面方法:
http://javahow.net/questions/17092967/windows-composer-install-issue
Composer安裝好后,可以設置中國鏡像:
http://pkg.phpcomposer.com/
HTML與表單
http://v4.golaravel.com/docs/4.1/html
Zizaco/Entrust
https://github.com/Zizaco/entrust
源碼示例:
https://github.com/aBillander/aBillander
常用命令
composer require illuminate/html
php artisan make:migration create_users_table --create=usersphp artisan make:migration add_votes_to_users_table --table=usersphp artisan migrate
composer dump-autoloadphp artisan migrate --force
php artisan migrate:rollback
php artisan migrate:reset
php artisan migrate:refresh
php artisan migrate:refresh --seed
php artisan make:seeder UserTableSeeder
php artisan db:seed
php artisan db:seed --class=UserTableSeeder
php artisan migrate:refresh --seed
php artisan make:model Article php artisan make:controller ArticlesControllerphp artisan make:controller ArticlesController --plain
php artisan make:controller PhotosController --resource (5.2)
php artisan make:request CreateArticleRequest
php artisan make:request UpdateArticleRequest
php artisan make:request ArticleRequest
php artisan make:provider RiakServiceProvider
php artisan event:generate
php連接sql server: