1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Laravel】-初学者向け Laravelの基本Artisanについて

Posted at

今回はLaravelでよく出てくるArtisanの用語について
説明していきたいと思います。

Artisan(アルチザン)とは?

Artisan(アルチザン)とは?
Laravelに搭載されているコマンドラインインターフェースのことです。
Artisan(アルチザン)にはLaravelでよく使う操作やファイル生成を行ったりします。

artisanコマンドについて

artisanコマンドはいろいろあります。

artisanコマンドを一覧で表示

php artisan list

マイグレーションの実行

php artisan migrate

コントローラーを作成

php artisan make:controller

モデルを作成

php artisan make:model

上記のコマンドはよく使うので、覚えておくと便利でしょう!

1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?