1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/resources/views/email/template/dark.blade.php

18 lines
340 B
PHP
Raw Normal View History

2020-09-25 13:57:02 +02:00
@component('email.template.master', ['design' => 'dark', 'settings' => $settings, 'whitelabel' => $whitelabel])
@slot('header')
2021-03-10 02:51:08 +01:00
@include('email.components.header', ['logo' => $company->present()->logo($settings)])
@endslot
{!! $body !!}
2021-03-13 13:34:53 +01:00
@if($signature)
<br>
<br>
<p>
{!! $signature !!}
2021-03-13 13:34:53 +01:00
</p>
@endif
@endcomponent