LaravelとVue勉強会 Laravelの資料

環境構築


要件

Cloud9


Cloud9でLaravel5.5動作する環境をつくる




サンプル掲示板



使うテーブル

php artisan make:migration create_posts_table --create=posts
php artisan migrate

モデル

php artisan make:model Post

シード

php artisan make:seeder PostsTableSeeder

APIリソース

php artisan make:resource PostResource