@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 Button --}} @isset($actionText)
Warning: Undefined variable $level in C:\laragon\htdocs\eloboost24\resources\views\mail\completed.blade.php on line 22

Warning: Undefined variable $level in C:\laragon\htdocs\eloboost24\resources\views\mail\completed.blade.php on line 25
@component('mail::button', ['url' => $actionUrl, 'color' => $color]) {{ $actionText }} @endcomponent @endisset Screenshot {{-- Outro Lines --}} @foreach ($outroLines as $line) {{ $line }} @endforeach If you want to share some love with your recent booster, feel free to show him some mercy and tip him. @component('mail::button', ['url' => $tipUrl, 'color' => 'blue']) Tip @endcomponent {{-- Salutation --}} @if (! empty($salutation)) {{ $salutation }} @else Regards,
EB24 Team @endif {{-- Subcopy --}} @isset($actionText) @component('mail::subcopy') If you’re having trouble clicking the "{{ $actionText }}" button, copy and paste the URL below into your web browser: [{{ $actionUrl }}]({{ $actionUrl }}) @endcomponent @endisset @endcomponent