mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
25 lines
539 B
PHP
25 lines
539 B
PHP
|
@component('email.components.layout')
|
||
|
|
||
|
@slot('header')
|
||
|
@component('email.components.header', ['p' => ''])
|
||
|
@lang($title)
|
||
|
@endcomponent
|
||
|
@endslot
|
||
|
|
||
|
@lang($message)
|
||
|
|
||
|
@component('email.components.button', ['url' => $url])
|
||
|
@lang($button)
|
||
|
@endcomponent
|
||
|
|
||
|
@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
|