@extends('layouts.app') @section('content')
@include('account.sidebar')

My Orders

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

{{ $order->order_number }}

Placed on {{ $order->created_at->format('M d, Y') }}

{{ ucfirst($order->status) }}

{{ $order->items->count() }} item(s)

Payment: {{ ucfirst($order->payment_method) }}

৳{{ number_format($order->total, 2) }}

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

No orders yet

Start shopping to see your orders here.

Browse Products
@endif
@endsection