@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
Sandbox / Payin Orders

Sandbox Payin Orders

Visible Amount
Rs {{ number_format((float) $pageAmount, 2) }}
Completed
{{ $completedCount }}
Failed
{{ $failedCount }}
Sandbox Payin List
{{ $orders->total() }} sandbox payin orders found
@forelse ($orders as $order) @php $statusLabel = match ((int) $order->status) { 1 => 'Paid', 2 => 'Failed', default => 'Pending' }; $statusClass = match ((int) $order->status) { 1 => 'success', 2 => 'danger', default => 'warning' }; @endphp @empty @endforelse
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.
{{ $orders->links() }}
@endsection