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