Fixes for signature not showing

This commit is contained in:
= 2021-03-13 23:34:53 +11:00
parent 594c4b5054
commit 559ff0ed40
4 changed files with 21 additions and 14 deletions

View File

@ -22,10 +22,6 @@
@lang($button)
@endcomponent
@slot('signature')
{{ $signature }}
@endslot
@if(isset($whitelabel) && !$whitelabel)
@slot('footer')
@component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])

View File

@ -6,10 +6,12 @@
{!! $body !!}
@slot('below_card')
@if($signature)
{{ $signature }}
@endif
@endslot
@if($signature)
<br>
<br>
<p>
{{ $signature }}
</p>
@endif
@endcomponent

View File

@ -6,10 +6,12 @@
{!! $body !!}
@slot('below_card')
@if($signature)
{{ $signature }}
@endif
@endslot
@if($signature)
<br>
<br>
<p>
{{ $signature }}
</p>
@endif
@endcomponent

View File

@ -24,6 +24,13 @@
</table>
</td>
</tr>
@if($signature)
<tr>
<td>
<p>{{ $signature }}</p>
</td>
</tr>
@endif
<tr>
@isset($whitelabel)
@if(!$whitelabel)