我不知道在下面(平方)的header logo
示例中可以找到哪里
public function toMail($notifiable)
{
return (new MailMessage)
->line('The introduction to the notification.'.$user->name)
->line('Hey Now hey now')
->action('Notification Action', route('register.select'))
->line('Thank you for using our application!');
}
email.blade.php
中进行编辑::
@component('mail::message')
{{-- Greeting --}}
@if (! empty($greeting))
# {{ $greeting }}
@else
@if ($level === 'error')
# @lang('Whoops!')
@else
# @lang('Hello!')
@endif
@endif
{{-- Intro Lines --}}
@foreach ($introLines as $line)
{{ $line }}
@endforeach
... and so on, and so forth
logo header
,但我找不到确切的位置。先生,需要您的帮助。
答案 0 :(得分:0)
您只需要自定义邮件模板。
运行此命令:
php artisan vendor:publish --tag=laravel-notifications
之后,您将在resources/views/vendor/notifications
中找到模板。
如果您要自定义模板中使用的邮件组件:
php artisan vendor:publish --tag=laravel-mail
您将在resources/views/vendor/mail
中找到组件。您想要的是message.blade.php
和header.blade.php
。