@extends('layouts.app') @section('title', 'My Orders - ECA Networks') @section('content')

My Orders

Track and manage your orders

New Order
@if($orders->count())
@foreach($orders as $order)

{{ $order->order_number }}

{{ $order->orderItems->count() ?? '?' }} item(s)

{{ $order->created_at->format('M d, Y') }}
{{ $order->created_at->format('h:i A') }}
{{ ucfirst($order->status) }}
{{ ucfirst($order->payment_status) }}

KES {{ number_format($order->total) }}

{{ str_replace('_', ' ', $order->payment_method) }}

@endforeach
{{ $orders->links() }}
@else

No orders yet

You haven't placed any orders yet.

Start Shopping
@endif
@endsection