1
3

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-05-22

#はじめに
開発をしている中でコードの変更が反映されないことがあります。
初学者なら、なんで変更が反映されないの??ってなりますし、経験を積んだ今でもキャッシュクリアのコマンドを調べてるので一覧にまとめたいと思います。

#キャッシュクリアするコマンド一覧

###キャッシュクリア
コード変更したのに反映されない場合は、とりあえずこのコマンドを実行しろ的な基本コマンド

$ php artisan cache:clear

###ルートキャッシュ
web.phpファイルなどでルートを変更したのに反映されないって時はルートキャッシュを使えば上手くいくはずです。

$ php artisan route:cache

###configキャッシュクリア
envファイルを変更したらconfigキャッシュをクリアしてあげないと反映されないことが多いです。

$ php artisan config:cache

###viewキャッシュクリア
bladeファイルやvueファイルを編集したのに反映されない時はviewキャッシュをクリアします。

$ php artisan view:cache

###Seederファイルを作った時
Seederでダミーデータを作成した場合、php artisan db:seedコマンドを実行する前に下記を実行します。

$ composer dump-autoload

開発中にわりと実行するコマンドはだいたいこんなもんかなって思います。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?