LoginSignup
1
0

More than 1 year has passed since last update.

Validationの日本語化

Last updated at Posted at 2022-03-27

Macでは

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');"

このままでは属性が日本語化されないので例えば

resources/lang/ja/validation.php
// 最終行近く
'attributes' => [
        "name" => "氏名",
        "tag_name" => "タグ名",
        "email" => "メールアドレス",
        "password" => "パスワード",
        "password_confirmation" => "パスワード(確認用)",
        "content" => "内容",
        "memo_img" => "添付書類"
    ],

などとする

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