1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/resources/views/email/template/light.blade.php
2024-01-31 16:46:29 +11:00

26 lines
469 B
PHP

@component('email.template.master', ['design' => 'light', '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>
@endisset
@endcomponent