mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
18 lines
325 B
PHP
18 lines
325 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
|
|
|
|
@endcomponent
|