@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)
Notice: Undefined variable: level in C:\Apache24\htdocs\resources\views\vendor\notifications\email.blade.xxxx.php on line 24

Notice: Undefined variable: level in C:\Apache24\htdocs\resources\views\vendor\notifications\email.blade.xxxx.php on line 27
@component('mail::button', ['url' => $actionUrl, 'color' => $color]) {{ $actionText }} @endcomponent @endisset {{-- Outro Lines --}} @foreach ($outroLines as $line) {{ $line }} @endforeach {{-- Salutation --}} @if (! empty($salutation)) {{ $salutation }} @else S pozdravem,
{{ config('app.name') }} @endif {{-- Subcopy --}} @isset($actionText) @component('mail::subcopy') Jesliže máte problémy s odkazem "{{ $actionText }}", zkopírujte níže uvedený odkaz do Vašeho prohlížeče: [{{ $actionUrl }}]({{ $actionUrl }}) Odkaz funguje jen pokud jste již přihlášen do G5i! Na tento e-mail neodpovídejte. Byl vytvořen automaticky. @endcomponent @endisset @endcomponent