@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) @component('mail::button', ['url' => $actionUrl, 'color' => $color]) {{ $actionText }} @endcomponent @endisset {{-- Outro Lines --}} @foreach ($outroLines as $line) {{ $line }} @endforeach @if (! empty($salutation)) {{ $salutation }} @else Saludos,
{{ config('constants.INSTITUCIONES')[config('constants.GENERAL.INSTITUCION')] }} @endif @isset($actionText) @component('mail::subcopy') Si tiene problemas para hacer clic en el boton "{{ $actionText }}", copie y pegue la siguiente URL en su navegador web.: [{{ $actionUrl }}]({{ $actionUrl }}) @endcomponent @endisset @endcomponent