@extends('dining.layouts.public') @section('title', 'Payment Cancelled - The LaLiT Dining Program') @section('styles') @endsection @section('content')

Payment Cancelled

You have cancelled the payment transaction

@if(!empty($response))
Transaction Details
@if(isset($response['order_id']))
Order ID: {{ $response['order_id'] }}
@endif @if(isset($response['tracking_id']))
Tracking ID: {{ $response['tracking_id'] }}
@endif @if(isset($response['order_status']))
Status: {{ $response['order_status'] }}
@endif @if(isset($response['amount']))
Amount: ₹{{ number_format($response['amount'], 2) }}
@endif @if(isset($response['status_message']))
Message: {{ $response['status_message'] }}
@endif @else
The transaction was cancelled before completion.
@endif

You can try again or contact support if you need assistance.

Try Again Contact Support
@if(!empty($response))
View Full Response (Debug)
{{ print_r($response, true) }}
@endif
@endsection