@extends('layouts.header') @section('content')

ICICI Payment API - Test Console

Initiate Payment

Check Payment Status

Recent Payments

@forelse($recentPayments ?? [] as $pmt) @empty @endforelse
ID Request ID Mode Amount Beneficiary Status UTR Created Actions
{{ $pmt->id }} {{ $pmt->request_id }} {{ $pmt->mode }} ₹{{ number_format($pmt->amount, 2) }} {{ $pmt->beneficiary_name }}
{{ $pmt->beneficiary_account }}
{{ $pmt->api_status }} {{ $pmt->utr_number ?? '-' }} {{ $pmt->created_at ? $pmt->created_at->format('d-M-Y H:i') : '-' }}
No payments found. Make your first test payment above.
@endsection