@component('mail::message')
{{-- Greeting --}}
@if (! empty($greeting))
# {{ $greeting }}
@else
@if ($level == 'error')
# Опа!
@else
# Здравейте!
@endif
@endif
{{-- Intro Lines --}}
@foreach ($introLines as $line)
{{ $line }}
@endforeach
{{-- Action Button --}}
@if (isset($actionText))
Notice: Undefined variable: level in D:\dev\sklad\resources\views\vendor\notifications\email.blade.php on line 23
Notice: Undefined variable: level in D:\dev\sklad\resources\views\vendor\notifications\email.blade.php on line 26
@component('mail::button', ['url' => $actionUrl, 'color' => $color])
{{ $actionText }}
@endcomponent
@endif
{{-- Outro Lines --}}
@foreach ($outroLines as $line)
{{ $line }}
@endforeach
@if (! empty($salutation))
{{ $salutation }}
@else
Поздрави,
{{ config('app.name') }}
@endif
@if (isset($actionText))
@component('mail::subcopy')
Ако имате проблеми при кликване върху бутона "{{$actionText}}", копирайте и поставете URL адреса по-долу
във вашия уеб браузър: [{{ $actionUrl }}]({{ $actionUrl }})
@endcomponent
@endif
@endcomponent