2017-09-12 20:23:48 +01:00
|
|
|
@component('mail::layout')
|
|
|
|
{{-- Header --}}
|
|
|
|
@slot('header')
|
2019-07-14 16:33:24 +01:00
|
|
|
@component('mail::header', ['url' => url('/')])
|
2017-09-12 20:23:48 +01:00
|
|
|
{{ UserConfig::get('app_name') }}
|
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
|
|
|
|
{{-- Body --}}
|
|
|
|
{{ $slot }}
|
|
|
|
|
|
|
|
{{-- Subcopy --}}
|
|
|
|
@isset($subcopy)
|
|
|
|
@slot('subcopy')
|
|
|
|
@component('mail::subcopy')
|
|
|
|
{{ $subcopy }}
|
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
@endisset
|
|
|
|
|
|
|
|
{{-- Footer --}}
|
|
|
|
@slot('footer')
|
|
|
|
@component('mail::footer')
|
|
|
|
Sent using <a href="http://showmy.photos">Blue Twilight</a>. © 2016-{{ date('Y') }} <a href="https://www.andyheathershaw.uk">Andy Heathershaw</a>.
|
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
@endcomponent
|