mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
9050d4e564
* Request Cancellation * Add fields to settings * Recurring invoice cancellation request * Stub Template controller
31 lines
465 B
PHP
31 lines
465 B
PHP
@component('mail::layout')
|
|
|
|
{{-- Header --}}
|
|
@slot('header')
|
|
@component('mail::header', ['url' => config('app.url')])
|
|
Header Title
|
|
@endcomponent
|
|
@endslot
|
|
|
|
{{-- Body --}}
|
|
{{ $message }}
|
|
|
|
{{-- Subcopy --}}
|
|
@isset($subcopy)
|
|
@slot('subcopy')
|
|
@component('mail::subcopy')
|
|
{{ $subcopy }}
|
|
@endcomponent
|
|
@endslot
|
|
@endisset
|
|
|
|
|
|
{{-- Footer --}}
|
|
@slot('footer')
|
|
@component('mail::footer')
|
|
© {{ date('Y') }} {{ config('ninja.app_name') }}.
|
|
@endcomponent
|
|
@endslot
|
|
|
|
@endcomponent
|