mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-06 19:44:35 -04:00
Fixes for signature not showing
This commit is contained in:
parent
594c4b5054
commit
559ff0ed40
@ -22,10 +22,6 @@
|
|||||||
@lang($button)
|
@lang($button)
|
||||||
@endcomponent
|
@endcomponent
|
||||||
|
|
||||||
@slot('signature')
|
|
||||||
{{ $signature }}
|
|
||||||
@endslot
|
|
||||||
|
|
||||||
@if(isset($whitelabel) && !$whitelabel)
|
@if(isset($whitelabel) && !$whitelabel)
|
||||||
@slot('footer')
|
@slot('footer')
|
||||||
@component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])
|
@component('email.components.footer', ['url' => 'https://invoiceninja.com', 'url_text' => '© InvoiceNinja'])
|
||||||
|
@ -6,10 +6,12 @@
|
|||||||
|
|
||||||
{!! $body !!}
|
{!! $body !!}
|
||||||
|
|
||||||
@slot('below_card')
|
@if($signature)
|
||||||
@if($signature)
|
<br>
|
||||||
{{ $signature }}
|
<br>
|
||||||
@endif
|
<p>
|
||||||
@endslot
|
{{ $signature }}
|
||||||
|
</p>
|
||||||
|
@endif
|
||||||
|
|
||||||
@endcomponent
|
@endcomponent
|
||||||
|
@ -6,10 +6,12 @@
|
|||||||
|
|
||||||
{!! $body !!}
|
{!! $body !!}
|
||||||
|
|
||||||
@slot('below_card')
|
@if($signature)
|
||||||
@if($signature)
|
<br>
|
||||||
{{ $signature }}
|
<br>
|
||||||
@endif
|
<p>
|
||||||
@endslot
|
{{ $signature }}
|
||||||
|
</p>
|
||||||
|
@endif
|
||||||
|
|
||||||
@endcomponent
|
@endcomponent
|
||||||
|
@ -24,6 +24,13 @@
|
|||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@if($signature)
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<p>{{ $signature }}</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
@endif
|
||||||
<tr>
|
<tr>
|
||||||
@isset($whitelabel)
|
@isset($whitelabel)
|
||||||
@if(!$whitelabel)
|
@if(!$whitelabel)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user