メール内のメッセージを翻訳したいと思います。laravelのパスワードリセットメールを変更する
vendor/laravel/framework/src/Illuminate/Auth/Notifications/ResetPassword.php
public function toMail()
{
return (new MailMessage)
->line([
'You are receiving this email because we received a password reset request for your account.',
'Click the button below to reset your password:',
])
->action('Reset Password', url('password/reset', $this->token))
->line('If you did not request a password reset, no further action is required.');
}
メッセージを変更するための最良の方法は何ですか?かなり確信して私は5.3 docsから