{{-- Salutation --}}
@if (! empty($greeting))
# {{ $greeting }}
@else
@if ($level === 'error')
# @lang('Oups !')
@else
# @lang('Bonjour !')
@endif
@endif
{{-- Lignes d’introduction --}}
@foreach ($introLines as $line)
{{ $line }}
@endforeach
{{-- Bouton d’action --}}
@isset($actionText)
Warning: Undefined variable $level in /home/dotcroz/urbainpick/resources/views/vendor/notifications/email.blade.php on line 22
{{ $actionText }}
@endisset
{{-- Lignes de conclusion --}}
@foreach ($outroLines as $line)
{{ $line }}
@endforeach
{{-- Signature --}}
@if (! empty($salutation))
{{ $salutation }}
@else
@lang('Cordialement,')
{{ config('app.name') }}
@endif
{{-- Texte secondaire --}}
@isset($actionText)
@lang(
"Si vous avez des difficultés à cliquer sur le bouton \":actionText\", copiez et collez l’URL ci-dessous\n".
'dans votre navigateur web :',
[
'actionText' => $actionText,
]
)
[{{ $displayableActionUrl }}]({{ $actionUrl }})
@endisset