Customer dashboard

My orders

ProfileSupport
@csrf
Total orders
{{ $orders->total() }}
Pending payment
{{ auth()->user()->orders()->whereIn('payment_status',['pending','submitted','under_review'])->count() }}
Delivered
{{ auth()->user()->orders()->where('status','ticket_delivered')->count() }}
@forelse($orders as $order)@empty@endforelse
OrderMatchTotalPaymentStatus
{{ $order->order_number }}{{ $order->items->first()?->description }}{{ $order->currency }} {{ number_format((float)$order->total,2) }}{{ str($order->payment_status)->replace('_',' ')->title() }}{{ str($order->status)->replace('_',' ')->title() }}View
You have no orders yet.
{{ $orders->links() }}