@extends('themes.basic.business.layouts.app') @section('container', 'dashboard-container-sm') @section('title', d_trans('Checkout')) @section('header_title', d_trans('Complete the payment')) @section('breadcrumbs', Breadcrumbs::render('business.checkout', $trx)) @section('content')
{{ d_trans('Payment details') }}
    @if ($trx->hasTax() || $trx->hasFees())
  • {{ d_trans('SubTotal') }}
    {{ getAmount($trx->amount) }}
  • @if ($trx->hasTax())
  • {{ d_trans(':tax_name (:tax_rate%)', [ 'tax_name' => m_trans($trx->tax->name), 'tax_rate' => $trx->tax->rate, ]) }}
    {{ getAmount($trx->tax->amount) }}
  • @endif @if ($trx->hasFees())
  • {{ d_trans(':payment_gateway Fees (:percentage%)', [ 'payment_gateway' => $trx->paymentGateway->trans->name, 'percentage' => $trx->paymentGateway->fees, ]) }}
    {{ getAmount($trx->fees) }}
  • @endif @endif
  • {{ d_trans('Total') }}

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

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

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

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