@component('mail::message') {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level === 'error') # @lang('Whoops!') @else {{--# @lang('Hello!')--}} @endif @endif {{-- Intro Lines --}} @foreach ($introLines as $line) {{ $line }} @endforeach {{-- Action Button --}} @isset($actionText)
Warning: Undefined variable $level in /home/colaborativa/public_html/tu-entrada-frontend/resources/views/vendor/notifications/email.blade.php on line 25

Warning: Undefined variable $level in /home/colaborativa/public_html/tu-entrada-frontend/resources/views/vendor/notifications/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--}} {{--@lang('Saludos'),
--}} {{--{{ config('app.name') }}--}} {{--@endif--}} {{-- Subcopy --}} @isset($actionText) @slot('subcopy') @lang( "Si tiene problemas para hacer clic en el botón \":actionText\", copie y pegue la URL a continuación\n". 'en su navegador web: [:displayableActionUrl](:actionURL)', [ 'actionText' => $actionText, 'actionURL' => $actionUrl, 'displayableActionUrl' => $displayableActionUrl, ] ) @endslot @endisset @endcomponent