@component('mail::message') {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level == 'error') # @lang('mail.notifications_whoops') @else # @lang('mail.notifications_hello') @endif @endif {{-- Intro Lines --}} @foreach ($introLines as $line) {{ $line }} @endforeach {{-- Action Button --}} @isset($actionText) @component('mail::button', ['url' => $actionUrl, 'color' => $color]) {{ $actionText }} @endcomponent @endisset {{-- Outro Lines --}} @foreach ($outroLines as $line) {{ $line }} @endforeach {{-- Salutation --}} @if (! empty($salutation)) {{ $salutation }} @else @lang('mail.notifications_regards'),
{{ config('app.display_name') }} @endif {{-- Subcopy --}} @isset($actionText) @component('mail::subcopy') @lang('mail.notifications_footer', [ 'actionText' => $actionText, 'actionURL' => $actionUrl ] ) @endcomponent @endisset @endcomponent