1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

laravel入門

Last updated at Posted at 2018-04-25

##よく使用するコマンド
laravel内蔵サーバ起動

php artisan serve

モデルファイルの作成

php artisan make:model Message

コントローラーファイルの作成

php artisan make:controller XxxsController

※複数形(単数形でもOKだが複数形が推奨)で先頭が大文字

マイグレーションファイルの作成

php artisan make:migration create_XXXs_table --create=XXXs

テーブル名が複数形である理由は、テーブルの中に複数のレコードが格納されるため

マイグレーションの実行

php artisan migrate

ルーティングの確認

php artisan route:list

##tips
###7つの基本ルーティングの省略形
CRUD+詳細ページ+新規作成用のフォームページ+更新用のフォームページは以下のように表現できる

Route::resource('XXXs', 'XXXsController');

※コントローラー名は先頭大文字

###ビューファイルでのコメント

{{--

--}}

※随時更新します

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?