mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-04 16:34:40 -04:00
Fixes for signature not showing
This commit is contained in:
parent
594c4b5054
commit
559ff0ed40
@ -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'])
|
||||
|
@ -6,10 +6,12 @@
|
||||
|
||||
{!! $body !!}
|
||||
|
||||
@slot('below_card')
|
||||
@if($signature)
|
||||
{{ $signature }}
|
||||
@endif
|
||||
@endslot
|
||||
@if($signature)
|
||||
<br>
|
||||
<br>
|
||||
<p>
|
||||
{{ $signature }}
|
||||
</p>
|
||||
@endif
|
||||
|
||||
@endcomponent
|
||||
|
@ -6,10 +6,12 @@
|
||||
|
||||
{!! $body !!}
|
||||
|
||||
@slot('below_card')
|
||||
@if($signature)
|
||||
{{ $signature }}
|
||||
@endif
|
||||
@endslot
|
||||
@if($signature)
|
||||
<br>
|
||||
<br>
|
||||
<p>
|
||||
{{ $signature }}
|
||||
</p>
|
||||
@endif
|
||||
|
||||
@endcomponent
|
||||
|
@ -24,6 +24,13 @@
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
@if($signature)
|
||||
<tr>
|
||||
<td>
|
||||
<p>{{ $signature }}</p>
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
<tr>
|
||||
@isset($whitelabel)
|
||||
@if(!$whitelabel)
|
||||
|
Loading…
x
Reference in New Issue
Block a user