У меня проблема с кодировкой шаблона электронной почты:
Это мой шаблон:
mail / user-creation.blade.php
@component('mail::message')
# Invoice Paid
Your invoice has been paid!
@component('mail::button', ['url' => '#'])
View Invoice
@endcomponent
Thanks,<br>
{{ config('app.name') }}
@endcomponent
Например, в web.php:
Route::get('/test', function () {
$message = (new \App\Notifications\UserCreated(\App\User::first()))->toMail('test@email.com');
$markdown = new \Illuminate\Mail\Markdown(view(), config('mail.markdown'));
return $markdown->render('mail.user-created', $message->toArray());
});
И я получаю:
Предварительный просмотр в браузере
Предварительный просмотр в браузере 2
Что не так?
-
Я переместил код влево:
Кодслева
код слева 2