@extends('layouts.master') @section('title', 'Payment Failed') @section('content')

Payment Failed

Unfortunately, your payment could not be processed

@if($transaction->failure_reason)
Reason: {{ $transaction->failure_reason }}
@endif
Transaction ID:

#{{ $transaction->id }}

Attempted Amount:

₹{{ number_format($transaction->total_amount, 2) }}

No charges were made to your account. You can try again or contact support if the issue persists.
@endsection