@extends('layout') @section('content')
Sr.NO | User Name | Transaction NO | Payment Type | Payment Status | Created At |
---|---|---|---|---|---|
{{ $index + 1 }} | {{ $payment->booking->user->name ?? 'N/A' }} | {{ $payment->booking->transaction_number ?? 'N/A' }} | {{ ucfirst($payment->booking->payment_type ?? 'N/A') }} | @if ($payment->booking->payment_status == 'success') Success @elseif($payment->booking->payment_status == 'pending') Pending @elseif($payment->booking->payment_status == 'failed') Failed @else N/A @endif | {{ $payment->created_at->format('d M Y H:i') }} |