【ララはじ #1】 Laravel9、さわり始めました。
以前もそんなことをしてような気がします。
最初に、私は日本人であり日本在住なのでそれに合わせた対策を施します。
まず、特に認証系とかのエラーメッセージ等を日本語化します。
今は便利になってるんですね…
次のようなコマンドで日本語関連のリソースが組み込まれます。
(ワークディレクトリでの作業になります)
% sail composer require laravel-lang/publisher laravel-lang/lang --dev
% sail artisan lang:add ja
これで、lang/ja というディレクトリが出来上がって、言語ファイルが生成されています。
なにこれw 超便利w
(まぁ、1回しかしないんですけど…
あとは、設定ファイル config/app.php の当該箇所を変更します。
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. We have gone
| ahead and set this to a sensible default for you out of the box.
|
*/
'timezone' => 'Asia/Tokyo', // <---ここ
/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by the translation service provider. You are free to set this value
| to any of the locales which will be supported by the application.
|
*/
'locale' => 'ja', // <---ここ
さて、どうだろう…
http://localhost にアクセスしてみても、なにも変わらない…ので、うまくいってるのかどうかは、今後に期待しますw