@extends('layouts.app', ['title' => 'Checkout | Print Cards']) @section('content')

Checkout {{ $order->order_number }}

Gateway: {{ strtoupper($provider) }} | Payment status: {{ ucfirst($order->payment_status) }}
Rs {{ number_format($order->total_amount, 2) }}
Invoice {{ $order->invoice_number }}
@if(!$gatewayEnabled)
Payment gateway is disabled by the administrator.
@else @if($demoMode)
Demo mode is enabled. Submitting this form will mark the order as paid and create payment IDs automatically.
@endif
@csrf
Supported methods
UPI, debit card, credit card, and net banking
@endif
@endsection