@component('shopper::mails.html.layout')
{{-- Header --}}
@slot('header')
@component('shopper::mails.html.header', ['url' => config('app.url'), 'description' => __('Online Shopping tool')])
{{ config('app.name') }}
@endcomponent
@endslot
{{-- Body --}}
{{ $slot }}
{{-- Subcopy --}}
@isset($subcopy)
@slot('subcopy')
@component('shopper::mails.html.subcopy')
{{ $subcopy }}
@endcomponent
@endslot
@endisset
{{-- Footer --}}
@slot('footer')
@component('shopper::mails.html.footer')
© {{ date('Y') }} {{ config('app.name') }}.
@lang('All rights reserved.')
@endcomponent
@endslot
@endcomponent