diff --git a/resources/views/customers/invoices/invoice.blade.php b/resources/views/customers/invoices/invoice.blade.php index 15f577d87..8bfaaeae5 100644 --- a/resources/views/customers/invoices/invoice.blade.php +++ b/resources/views/customers/invoices/invoice.blade.php @@ -116,18 +116,18 @@ @if($total->code != 'total') {{ trans($total['name']) }}: - @money($total->amount, $invoice->currency_code, true) + @money($total->amount, $invoice->currency_code, true) @else @if ($invoice->paid) {{ trans('invoices.paid') }}: - - @money($invoice->paid, $invoice->currency_code, true) + - @money($invoice->paid, $invoice->currency_code, true) @endif {{ trans($total['name']) }}: - @money($total->amount - $invoice->paid, $invoice->currency_code, true) + @money($total->amount - $invoice->paid, $invoice->currency_code, true) @endif @endforeach @@ -138,3 +138,14 @@ @endsection + +@if (isset($currency_style) && $currency_style) + @push('stylesheet') + + @endpush +@endif \ No newline at end of file