mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
e5a230e0c7
* Adjustments for tests * Implement handling of temp downloading resources * Refactor paths * Refactors for file paths * Refactor paths * Add in S3 adapter * Refactor company Documment URL * Refactor for entity pdf performance * Refactors for invoice generation * Enhancements for emails invoices * Emails * Fixes for client portal queries
28 lines
653 B
PHP
28 lines
653 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
|
|
|
|
@if(isset($view_link))
|
|
@component('email.components.button', ['url' => $view_link])
|
|
{{ $view_text }}
|
|
@endcomponent
|
|
@endif
|
|
|
|
@if(isset($signature))
|
|
{{ $signature }}
|
|
@endif
|
|
|
|
@slot('footer')
|
|
@component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])
|
|
For any info, please visit InvoiceNinja.
|
|
@endcomponent
|
|
@endslot
|
|
|
|
@endcomponent |