@php $brandUrl = config('mail.brand.url') ?: config('app.url'); @endphp @component('mail::layout') {{-- Header --}} @slot('header') @component('mail::header', ['url' => $brandUrl]) {{ config('app.name') }} @endcomponent @endslot {{-- Body --}} {{ $slot }} {{-- Subcopy --}} @isset($subcopy) @slot('subcopy') @component('mail::subcopy') {{ $subcopy }} @endcomponent @endslot @endisset {{-- Footer --}} @slot('footer') @component('mail::footer', ['url' => $brandUrl]) {{ config('mail.brand.footer_text') }} @endcomponent @endslot @endcomponent