@extends('layouts.shop') @section('title', 'My Orders') @section('content')

My Orders

@if($orders->isEmpty())

No orders found

You haven't placed any orders yet. Once you place an order, it will appear here.

Start Shopping
@else
@foreach($orders as $order) @endforeach
Order Number Date Total Price Order Status Actions
{{ $order->order_number }} {{ $order->created_at->format('M d, Y') }} ৳{{ number_format($order->total, 0) }} {{ $order->status }} View Details
{{ $orders->links() }}
@endif
@endsection