@component('mail::message')
{{-- Greeting --}}
@if (! empty($greeting))
# {{ $greeting }}
@else
@if ($level === 'error')
# {{ __('Whoops!') }}
@else
# {{ __('Hello!') }}
@endif
@endif
{{-- Intro lines --}}
@foreach ($introLines as $line)
{{ $line }}
@endforeach
{{-- Action button --}}
@isset($actionText)
Warning: Undefined variable $level in C:\xampp\htdocs\resources\views\vendor\notifications\email.blade.php on line 23
Warning: Undefined variable $level in C:\xampp\htdocs\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
{{-- Salutation --}}
@if (! empty($salutation))
{{ $salutation }}
@else
{{ __('Regards') }},
{{ config('app.name') }}
@endif
{{-- cspell:words subcopy --}}
{{-- Subcopy --}}
@isset($actionText)
@slot('subcopy')
{{ __(
"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