1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00
invoiceninja/resources/views/email/template/dark.blade.php
2024-03-05 08:55:23 +11:00

26 lines
484 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>
{!! nl2br($signature) !!}
</p>
@endif
@isset($email_preferences)
<p>
<a href="{{ $email_preferences }}">
{{ ctrans('texts.email_preferences') }}
</a>
</p>
@endif
@endcomponent