2017-09-14 22:21:00 +03:00
|
|
|
@component('mail::layout')
|
|
|
|
{{-- Header --}}
|
|
|
|
@slot('header')
|
|
|
|
@component('mail::header', ['url' => config('app.url')])
|
2017-11-15 21:33:12 +03:00
|
|
|
{{ setting('general.company_name', config('app.name')) }}
|
2017-09-14 22:21:00 +03:00
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
|
|
|
|
{{-- Body --}}
|
|
|
|
{{ $slot }}
|
|
|
|
|
|
|
|
{{-- Subcopy --}}
|
|
|
|
@isset($subcopy)
|
|
|
|
@slot('subcopy')
|
|
|
|
@component('mail::subcopy')
|
|
|
|
{{ $subcopy }}
|
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
@endisset
|
|
|
|
|
|
|
|
{{-- Footer --}}
|
|
|
|
@slot('footer')
|
|
|
|
@component('mail::footer')
|
2017-11-15 21:33:12 +03:00
|
|
|
© {{ date('Y') }} {{ setting('general.company_name', config('app.name')) }}. All rights reserved.
|
2017-09-14 22:21:00 +03:00
|
|
|
@endcomponent
|
|
|
|
@endslot
|
|
|
|
@endcomponent
|