{{-- Greeting --}} @if (! empty($greeting)) {{ $greeting[ 0 ] }} {{ $greeting[ 1 ] }}, @else @if ($level === 'error') # @lang('Whoops!') @else # @lang('Hello!') @endif @endif {{-- Intro Lines --}} @foreach ($introLines as $line) @if ($line instanceof \Illuminate\Support\HtmlString) {!! $line !!} @else

{{ $line }}

@endif @endforeach {{-- Action Button --}} @isset($actionText) {{ $actionText }} @endisset @foreach ($outroLines as $line) @if ($line instanceof \Illuminate\Support\HtmlString) {!! $line !!} @else

{{ $line }}

@endif @endforeach {{-- Subcopy --}} @isset($actionText) {{ "V prípade problémov s tlačidlom \"$actionText\" kliknite na odkaz uvedený nižšie, prípadne ho skopírujte a vložte do Vášho prehliadača" }} [{{ $displayableActionUrl }}]({{ $actionUrl }}) @endisset {{-- Salutation --}} @if ( !empty( $salutation ) or is_array( $salutation ) ) @if ( is_array( $salutation )) S pozdravom,
@if ( !empty( $salutation[ 'avatar' ] ) ) avatar
@endif {{ $salutation[ 'full_name' ] ?? 'tím ' . config( 'car.company.name' ) }}
@if ( !empty( $salutation[ 'job_position' ] )) {{ $salutation[ 'job_position' ] }} @endif @if ( !empty( $salutation[ 'phone' ] ) ) {{ $salutation[ 'phone' ] }}
@endif @if ( !empty( $salutation[ 'email' ] ) ) {{ $salutation[ 'email' ] }} @endif @else {{ $salutation }} @endif @else {{ __( 'Regards,' ) }} {{ ( isset( $businessCase ) and $businessCase->company ) ? $businessCase->company->name : config( 'car.company.name' ) }}
@endif