@component('mail::message') {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level == 'error') # {{ "Ops!" }} @else # {{ "Olá!" }} @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 {{-- Salutation --}} @if (! empty($salutation)) {{ $salutation }} @else {{ "Atenciosamente" }},
{{ config('app.name') }} @endif {{-- Subcopy --}} @isset($actionText) @component('mail::subcopy') @lang( "Se estiver tendo algum problema ao clicar em \":actionText\", copie e cole a URL abaixo\n". 'na barra de endereços do seu navegador: [:actionURL](:actionURL)', [ 'actionText' => $actionText, 'actionURL' => $actionUrl ] ) @endcomponent @endisset @endcomponent