From c073248ec575c1e7360e397776ff6c5fa76bcc23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Batuhan=20Ba=C5=9F?= Date: Wed, 13 Feb 2019 13:16:48 +0300 Subject: [PATCH] Forgotten style for customer invoice --- .../views/customers/invoices/invoice.blade.php | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) 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