mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
26 lines
481 B
PHP
26 lines
481 B
PHP
@component('email.template.master', ['design' => 'dark', 'settings' => $settings, 'whitelabel' => $whitelabel])
|
|
|
|
@slot('header')
|
|
@include('email.components.header', ['logo' => $company->present()->logo($settings)])
|
|
@endslot
|
|
|
|
{!! $body !!}
|
|
|
|
@if($signature)
|
|
<br>
|
|
<br>
|
|
<p>
|
|
{!! $signature !!}
|
|
</p>
|
|
@endif
|
|
|
|
@isset($email_preferences)
|
|
<p>
|
|
<a href="{{ $email_preferences }}">
|
|
{{ ctrans('texts.email_preferences') }}
|
|
</a>
|
|
</p>
|
|
@endif
|
|
|
|
@endcomponent
|