mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
21 lines
333 B
PHP
21 lines
333 B
PHP
|
@component('mail::layout')
|
||
|
|
||
|
{{-- Header --}}
|
||
|
@slot('header')
|
||
|
@component('mail::header', ['url' => config('app.url')])
|
||
|
Download
|
||
|
@endcomponent
|
||
|
@endslot
|
||
|
|
||
|
{{-- Body --}}
|
||
|
{{ $file_path }}
|
||
|
|
||
|
{{-- Footer --}}
|
||
|
@slot('footer')
|
||
|
@component('mail::footer')
|
||
|
© {{ date('Y') }} {{ config('ninja.app_name') }}.
|
||
|
@endcomponent
|
||
|
@endslot
|
||
|
|
||
|
@endcomponent
|