0
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 3 years have passed since last update.

よくつかうLaravel コマンドメモ

Last updated at Posted at 2020-11-06

マイグレーション

php artisan migrate

ロールバック

php artisan migrate:rollback

モデル作成 with migrate ファイル

php artisan make:model Board --migration

コントローラ作成 with リソース、モデル

php artisan make:controller BoardController --resource --model=Board

Laravel Adminにモデルを追加

php artisan admin:make BoardController --model=App\\Board
0
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
0
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?