@extends("layouts.app") @push("style") @endpush @section("content")
{{ $brandSettings->site_name }}
@if ($mfsGateways->isNotEmpty()) @if ($globalGateways->isEmpty() && $bankGateways->isEmpty()) {{ __("checkout.home.select_payment_method") }} @else {{ __("checkout.home.mobile_banking") }} @endif @endif @if ($globalGateways->isNotEmpty()) @if ($mfsGateways->isEmpty() && $bankGateways->isEmpty()) {{ __("checkout.home.select_payment_method") }} @else {{ __("checkout.home.global") }} @endif @endif @if ($bankGateways->isNotEmpty()) @if ($mfsGateways->isEmpty() && $globalGateways->isEmpty()) {{ __("checkout.home.select_payment_method") }} @else {{ __("checkout.home.net_banking") }} @endif @endif
@foreach ($faqs as $faq)

{{ $faq->title }}

@endforeach

{{ __("checkout.details.title") }}

  • {{ __("checkout.details.name") }}

    {{ $payment->customer?->name ?? "-" }}


  • {{ __("checkout.details.email") }}

    {{ $payment->customer?->email ?? "-" }}


  • {{ __("checkout.details.amount") }}

    {{ show_amount($payment->merchant_amount, $payment->merchant_currency) }}


  • {{ __("checkout.details.fee") }}

    {{ __("checkout.details.additional_fee") }}


  • {{ __("checkout.details.total_amount") }}

    {{ show_amount($payment->merchant_amount, $payment->merchant_currency) }}

@endsection @push("script") @endpush