removed redundant code from invoice/bill show

This commit is contained in:
Denis Duliçi
2021-07-20 11:09:28 +03:00
parent c2fd5c3eaa
commit 3432a2c22c
5 changed files with 6 additions and 32 deletions

View File

@ -5,7 +5,7 @@
{{ $textDocumentTitle }}
</h3>
@if ($textDocumentSubheading)
@if ($textDocumentSubheading)
<h5>
{{ $textDocumentSubheading }}
</h5>
@ -280,7 +280,7 @@
@stack('grand_total_tr_start')
<div class="border-top-dashed py-2">
<strong class="float-left">{{ trans($total->name) }}:</strong>
<span>@money($total->amount - $document->paid, $document->currency_code, true)</span>
<span>@money($document->amount_due, $document->currency_code, true)</span>
</div>
@stack('grand_total_tr_end')
@endif