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の初期設定/日本語化【自己啓発】

0
Posted at

Laravelの初期設定を変更する

・タイムゾーン
・言語
・警告メッセージを日本語にする

タイムゾーンと言語の変更

config/app.php
'timezone' => 'Asia/Tokyo',
'locale' => 'ja',
'faker_locale' => 'ja_JP',

日本語にする

方法1

Breezeをインストール。(必要に応じて)

composer require laravel/breeze --dev
php artisan breeze:install --dark
ダークモードが不要の場合は--darkオプション無しで実行

Breezejpパッケージのインストール/日本語。

composer require askdkc/breezejp --dev
php artisan breezejp //言語ファイル

方法2 下記はWindows環境では、実行しても日本語化にはなりませんでした。

php -r "copy('https://readouble.com/laravel/8.x/ja/install-ja-lang-files.php', 'install-ja-lang.php');"
php -f install-ja-lang.php
php -r "unlink('install-ja-lang.php');"

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?