@extends('user.layouts.app', ['title' => 'Sandbox Payin Orders']) @push('head') @endpush @section('content') @php $pageAmount = $orders->sum('amount'); $completedCount = $orders->where('status', 1)->count(); $failedCount = $orders->where('status', 2)->count(); @endphp
| Client Order ID | Wallet Order ID | Amount | Created Time | Wallet Type | Status |
|---|---|---|---|---|---|
{{ $order->order_id ?: 'N/A' }} UTR: {{ $order->utr ?: 'Not available' }} |
{{ $order->wallet_order_id ?: 'N/A' }} | Rs {{ number_format((float) $order->amount, 2) }} | {{ $order->created_at?->format('d M Y, h:i A') ?: '-' }} | {{ $order->wallet_type ? ucfirst($order->wallet_type) : 'N/A' }} | {{ $statusLabel }} |
| No sandbox payin orders found for the current filters. | |||||