Order Pipeline

Operator: {{ Auth::user()->name ?? 'Administrator' }}
@if(session('success')) @endif
@forelse($orders as $order)
#{{ $order->id }}
{{ $order->user_id }}
@if($order->status == 'Pending') Pending @else Completed @endif
Player UID
{{ $order->player_uid }}
Product Description
{{ $order->product_name }}
Amount
{{ number_format($order->price, 2) }} BDT
Timestamp
{{ \Carbon\Carbon::parse($order->created_at)->format('d M, h:i A') }}
@if($order->status == 'Pending')
@csrf
@else @endif
@empty
No Active Orders

Pipeline is empty. New incoming requests will appear here instantly.

@endforelse