2018-08-07 04:26:33 +00:00
|
|
|
@component('mail::layout')
|
|
|
|
{{-- Header --}}
|
|
|
|
@slot('header')
|
2020-01-22 10:05:31 +00:00
|
|
|
@component('mail::header',['site'=>$site])
|
2020-01-21 09:59:10 +00:00
|
|
|
{{ $heading }}
|
2018-08-07 04:26:33 +00:00
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
|
|
|
|
{{-- Body --}}
|
|
|
|
{{ $slot }}
|
|
|
|
|
|
|
|
{{-- Subcopy --}}
|
|
|
|
@isset($subcopy)
|
|
|
|
@slot('subcopy')
|
|
|
|
@component('mail::subcopy')
|
|
|
|
{{ $subcopy }}
|
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
@endisset
|
|
|
|
|
|
|
|
{{-- Footer --}}
|
|
|
|
@slot('footer')
|
|
|
|
@component('mail::footer')
|
2020-01-21 09:59:10 +00:00
|
|
|
<div class="fixedw" style="text-align: right; font-size: 0.8em;">
|
|
|
|
{{ config('mail.from.name') }}<br>
|
|
|
|
{!! $site->address('html') !!}<br>
|
|
|
|
{{ $site->site_email }}
|
|
|
|
</div>
|
2018-08-07 04:26:33 +00:00
|
|
|
@endcomponent
|
|
|
|
@endslot
|
2018-08-23 05:17:26 +00:00
|
|
|
@endcomponent
|