mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-23 13:43:29 -05:00
* Enable identifying a user who submits a report to sentry for tracking purposes * Minor fix for setup page * Fixes for Tests * Fixes for tests * Generic Entity Emailer * Fixes for emailing a generic entity
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 |