From 52558d5b41bd177be5c45df675e42de860457d50 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 15 Oct 2020 15:08:01 +1100 Subject: [PATCH] Credit view --- .../ninja2020/gateways/credit/index.blade.php | 52 +++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 resources/views/portal/ninja2020/gateways/credit/index.blade.php diff --git a/resources/views/portal/ninja2020/gateways/credit/index.blade.php b/resources/views/portal/ninja2020/gateways/credit/index.blade.php new file mode 100644 index 000000000000..d0176f9d136f --- /dev/null +++ b/resources/views/portal/ninja2020/gateways/credit/index.blade.php @@ -0,0 +1,52 @@ +@extends('portal.ninja2020.layout.app') +@section('meta_title', ctrans('texts.credit')) + +@section('body') +
+ @csrf + +
+ +
+
+
+ +
+
+

+ {{ ctrans('texts.pay_now') }} +

+

+ {{ ctrans('texts.complete_your_payment') }} +

+
+
+
+ {{ ctrans('texts.subtotal') }} +
+
+ {{ App\Utils\Number::formatMoney($total['invoice_totals'], $client) }} +
+ @if($total['credit_totals'] > 0) +
+ {{ ctrans('texts.credit_amount') }} +
+
+ {{ App\Utils\Number::formatMoney($total['credit_totals'], $client) }} +
+ @endif +
+ {{ ctrans('texts.amount_due') }} +
+
+ {{ App\Utils\Number::formatMoney($total['amount_with_fee'], $client) }} +
+
+
+ +
+
+
+
+
+@endsection \ No newline at end of file