mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
9ac66661ba
* Fixes for tests * payment
26 lines
588 B
PHP
26 lines
588 B
PHP
@component('email.template.master', ['design' => 'light'])
|
|
|
|
@slot('header')
|
|
@component('email.components.header', ['p' => $title, 'logo' => $logo])
|
|
@endcomponent
|
|
@endslot
|
|
|
|
@slot('greeting')
|
|
@lang($message)
|
|
@endslot
|
|
|
|
@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 |