@component('mail::message') {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level == 'error') # @lang('Whoops!') @else # @lang('Hola!') @endif @endif {{-- Intro Lines --}} @foreach ($introLines as $line) {{ $line }} @endforeach {{-- Action Button --}} @isset($actionText)
Warning: Undefined variable $level in /home/setik/prueba.setik.net/gr-app/resources/views/admin/emails/email.blade.php on line 23

Warning: Undefined variable $level in /home/setik/prueba.setik.net/gr-app/resources/views/admin/emails/email.blade.php on line 26
@component('mail::button', ['url' => $actionUrl, 'color' => $color]) {{ $actionText }} @endcomponent @endisset {{-- Outro Lines --}} @foreach ($outroLines as $line) {{ $line }} @endforeach {{-- Salutation --}} @if (! empty($salutation)) {{ $salutation }} @else Saludos,
Grupo Riquelme @endif {{-- Subcopy --}} @isset($actionText) @component('mail::subcopy') @lang( "Si tienes problemas presionando el boton \":actionText\", copie y pege la URL de abajo\n". 'en tu navegador web: [:actionURL](:actionURL)', [ 'actionText' => $actionText, 'actionURL' => $actionUrl ] ) @endcomponent @endisset @endcomponent