mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
22 lines
496 B
PHP
22 lines
496 B
PHP
|
@component('email.template.master', ['design' => 'light'])
|
||
|
|
||
|
@slot('header')
|
||
|
@component('email.components.header', ['p' => $title, 'logo' => $logo])
|
||
|
@endcomponent
|
||
|
@endslot
|
||
|
|
||
|
@slot('greeting')
|
||
|
@lang($body)
|
||
|
@endslot
|
||
|
|
||
|
@slot('signature')
|
||
|
{{ $signature }}
|
||
|
@endslot
|
||
|
|
||
|
@slot('footer')
|
||
|
@component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])
|
||
|
For any info, please visit InvoiceNinja.
|
||
|
@endcomponent
|
||
|
@endslot
|
||
|
|
||
|
@endcomponent
|