1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/vendor/mail/html/message.blade.php

28 lines
656 B
PHP
Raw Normal View History

@component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => config('app.url')])
{{ config('app.name') }}
@endcomponent
@endslot
{{-- Body --}}
{{ $slot }}
{{-- Subcopy --}}
@isset($subcopy)
@slot('subcopy')
@component('mail::subcopy')
{{ $subcopy }}
@endcomponent
@endslot
@endisset
{{-- Footer --}}
@slot('footer')
@component('mail::footer')
2019-09-26 15:00:51 +02:00
© {{ date('Y') }} {{ config('app.name') }}. @lang::get('All rights reserved.')
@endcomponent
@endslot
@endcomponent