@extends('portal.ninja2020.layout.app') @section('meta_title', ctrans('texts.checkout_com')) @push('head') @endpush @section('body')
@csrf @isset($token) @endisset

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

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

{{ ctrans('texts.payment_type') }}
{{ ctrans('texts.checkout_com') }} ({{ ctrans('texts.credit_card') }})
{{ ctrans('texts.subtotal') }}
{{ App\Utils\Number::formatMoney($total['invoice_totals'], $client) }}
{{ ctrans('texts.gateway_fees') }}
{{ App\Utils\Number::formatMoney($total['fee_total'], $client) }}
{{ ctrans('texts.amount') }}
{{ App\Utils\Number::formatMoney($total['amount_with_fee'], $client) }}
@isset($token)
{{ ctrans('texts.card_number') }}
**** {{ ucfirst($token->meta->last4) }}
@else
{{ ctrans('texts.token_billing_checkbox') }}
@if(app()->environment() == 'production') @else @endif
@endisset
@endsection