Понятия не имею, где я могу найти приведенный ниже пример 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
, моя проблема, я не могу найти гдеименно так.Нужна ваша помощь, господа.