@extends('themes.basic.layouts.single') @section('noindex', true) @section('section', translate('Checkout')) @section('header_title', translate('Complete the payment')) @section('title', translate('Complete the payment')) @section('body_bg', 'bg-white') @section('breadcrumbs', Breadcrumbs::render('checkout', $trx)) @section('header_v3', true) @section('content')
{{ translate('Payment details') }}
    @if ($trx->hasTax() || $trx->hasFees())
  • {{ translate('SubTotal') }} {{ getAmount($trx->amount) }}
  • @if ($trx->hasTax())
  • {{ translate(':tax_name (:tax_rate%)', [ 'tax_name' => $trx->tax->name, 'tax_rate' => $trx->tax->rate, ]) }} {{ getAmount($trx->tax->amount) }}
  • @endif @if ($trx->hasFees())
  • {{ translate(':payment_gateway Fees (:percentage%)', [ 'payment_gateway' => $trx->paymentGateway->name, 'percentage' => $trx->paymentGateway->fees, ]) }} {{ getAmount($trx->fees) }}
  • @endif @endif
  • {{ translate('Total') }}

    {{ getAmount($trx->total) }}

{{ translate('Instructions') }}
{!! $trx->paymentGateway->instructions !!}
{{ translate('Payment proof') }}

{{ translate('Choose payment Proof (Receipt, Bank statement, etc..), allowed file types (jpg, jpeg, png, pdf) in max size 2MB.') }}

@csrf
{{ translate('Cancel Payment') }}
@endsection