前提・実現したいこと
パスワードリマインダーにてメールを送信し届いたリンク付きメールの日本語化をしたいのですが
うまく行きません。一部日本語になっているのですが他の部分が英語のままになりどう触れば良いかわかりません。
どなたかご教示ください。
行った作業
php artisan vendor:publish //実行
行った作業2
//email.blade.phpを編集 @component('mail::message') {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level === 'error') # @lang('Whoops!') @else こんにちは @endif @endif {{-- Intro Lines --}} @foreach ($introLines as $line) {{ $line }} @endforeach {{-- Action Button --}} @isset($actionText) <?php switch ($level) { case 'success': case 'error': $color = $level; break; default: $color = 'primary'; } ?> @component('mail::button', ['url' => $actionUrl, 'color' => $color]) {{ $actionText }} @endcomponent @endisset {{-- Outro Lines --}} @foreach ($outroLines as $line) {{ $line }} @endforeach {{-- Salutation --}} @if (! empty($salutation)) {{ $salutation }} @else +{{ config('app.name') }}より @endif {{-- Subcopy --}} @isset($actionText) @slot('subcopy') もし、「{{ $actionText }}ボタン」がうまく機能しない場合、以下のURLをコピー&ペーストして直接ブラウザからアクセスしてください。 + [{{ $actionUrl }}]({{ $actionUrl }}) @endslot @endisset @endcomponent
補足情報(FW/ツールのバージョンなど)
laravel 6.0.3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。