@component('twill::emails.html.layout') {{-- Header --}} @slot('header') @component('twill::emails.html.header', ['url' => config('app.url')]) # {{ config('app.name') }} {{ app()->environment() }} ## {{ $title ?? $actionText }} @endcomponent @endslot {{-- Body --}} {{ twillTrans('twill::lang.emails.hello') }} {{ $copy }} {{ twillTrans('twill::lang.emails.regards') }}
{{ config('app.name') }} {{-- Button --}} @slot('button') @component('twill::emails.html.button', ['url' => $url]) {{ $actionText }} @endcomponent @endslot {{-- Subcopy --}} @slot('subcopy') @component('twill::emails.html.subcopy') {{ twillTrans('twill::lang.emails.problems', ['actionText' => $actionText, 'url' => $url]) }} @endcomponent @endslot {{-- Footer --}} @slot('footer') @component('twill::emails.html.footer') © {{ date('Y') }} — CMS powered by AREA 17. All rights reserved. @endcomponent @endslot @endcomponent