laravelでデフォルトのtimezoneの言語設定の変更

はじめに

laravelでデフォルトのtimezoneの言語設定を変更したい場合がある。その変更方法を紹介。

変更ファイル

変更対象は “` config/app.php “`

timezone

変更前

“` ‘timezone’ => ‘UTC’, “`

変更後

“` ‘timezone’ => ‘Asia/Tokyo’, “`

 

言語設定

変更前

“` ‘locale’ => ‘en’, “`

変更後

“` ‘locale’ => ‘ja’, “`