@php $buttonColor = match ($level ?? 'primary') { 'success', 'error' => $level, default => 'primary', }; @endphp @component('mail::message') # {{ $greeting ?? 'Hola,' }} @foreach ($introLines as $line) {{ $line }} @endforeach @isset($actionText) @component('mail::button', ['url' => $actionUrl, 'color' => $buttonColor]) {{ $actionText }} @endcomponent @endisset @foreach ($outroLines as $line) {{ $line }} @endforeach {{ $salutation ?? "Saludos,\nEquipo OpenMinds" }} @isset($actionText) @component('mail::subcopy') Si tienes problemas para hacer clic en el botón "{{ $actionText }}", copia y pega esta URL en tu navegador: [{{ $displayableActionUrl }}]({{ $actionUrl }}) @endcomponent @endisset @endcomponent