@component('mail::message') {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level == 'error') # Whoops! @else # Olá! @endif @endif @foreach ($introLines as $line) {{ $line }} @endforeach @isset($actionText) @component('mail::button', ['url' => $actionUrl, 'color' => 'blue']) {{ $actionText }} @endcomponent @endisset @foreach ($outroLines as $line) {{ $line }} @endforeach @isset($actionText) @component('mail::subcopy') Se estiver tendo problemas para clicar no botão "{{ $actionText }}", copie e cole a URL a seguir no seu navegador: [{{ $actionUrl }}]({{ $actionUrl }}) @endcomponent @endisset @endcomponent