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