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

More than 3 years have passed since last update.

Laravelで必要なコマンドなど備忘録

Last updated at Posted at 2020-05-08

設定を日本に変更する

config/app.php
'locale' => 'en' -> 'locale' => 'ja'
'timezone' => 'UTC' ->  'timezone' => 'Asia/Tokyo'

キャッシュの作り直し

php artisan config:cache

.envのAPP_KEY自動生成

No application encryption key has been specified.
のエラーが出たときは、.envのAPP_KEYが未設定だと思われる。

php artisan key:generate

Laravelのhelperインストール

composer require laravel/helpers
0
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
0
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?