@extends('user.layouts.index', ['header' => true, 'nav' => true, 'demo' => true]) @section('content')
{{-- Failed --}} @if (Session::has('failed')) @endif {{-- Success --}} @if (Session::has('success')) @endif

{{ __('Order Details') }}

{{-- Name --}} {{-- Quantity --}} {{-- Price --}} {{-- Tax --}} @if ($config[25]->config_value > 0) @endif {{-- Applied coupon --}} {{-- Total --}}
{{ __('Description') }} {{ __('Price') }}
{{ __('NFC Card Name') }}
{{ $nfcCardDetails->nfc_card_name }}
{{ __('Quantity') }}
1
{{ __('Price') }}
{{ formatCurrency($nfcCardDetails->nfc_card_price) }}
{{ __($config[24]->config_value) }} ({{ $config[25]->config_value }}%)
{{ formatCurrency(((float) $nfcCardDetails->nfc_card_price * (float) $config[25]->config_value) / 100, 2, '.', '') }}
{{ __('Total') }}
{{ formatCurrency($total) }}

{{-- Shipping Details --}}
@csrf

{{ __('Shipping Details') }}

{{-- Include countries --}} @include('user.pages.checkout.includes.countries')

{{ __('Payment method') }}

@foreach ($gateways as $gateway)
@endforeach
{{-- Footer --}} @include('user.includes.footer')
{{-- Custom JS --}} @section('scripts') @endsection @endsection