@component('mail::message')
{{-- Intro Lines --}}
@foreach ($introLines as $line)
{{ $line }}
@endforeach
{{-- Action Button --}}
@isset($actionText)
Warning: Undefined variable $level in /var/www/html/facturahero/resources/views/vendor/notifications/email.blade.php on line 23
Warning: Undefined variable $level in /var/www/html/facturahero/resources/views/vendor/notifications/email.blade.php on line 24
@component('mail::button', ['url' => $actionUrl, 'color' => $color])
{{ $actionText }}
@endcomponent
@endisset
{{-- Outro Lines --}}
@foreach ($outroLines as $line)
{{ $line }}
@endforeach
{{-- Subcopy --}}
@isset($actionText)
@slot('subcopy')
@lang(
"If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\n".
'into your web browser:',
[
'actionText' => $actionText,
]
) [{{ $displayableActionUrl }}]({{ $actionUrl }})
@endslot
@endisset
@endcomponent