@component('mail::message') {{-- Greeting --}} @if (! empty($greeting)) {{ $greeting }} @else @if ($level == 'error') Whoops! @else Hey there, @endif @endif {{-- Intro Lines --}} @foreach ($introLines as $line) {{ $line }} @endforeach {{-- Action Buttons --}} @component('mail::button', ['url' => $acceptUrl, 'color' => 'green']) Accept @endcomponent @component('mail::button', ['url' => $declineUrl, 'color' => 'red']) Decline @endcomponent {{-- Outro Lines --}} @foreach ($outroLines as $line) {{ $line }} @endforeach {{-- Salutation --}} @if (! empty($salutation)) {{ $salutation }} @else Regards,
EB24 Team @endif @endcomponent