@extends('customer.layout') @section('title','My Orders') @section('content')

My Orders

@foreach($orders as $order) @endforeach
Order Status Amount Date
#{{ $order->order_no }} {{ ucfirst($order->status) }} LKR {{ number_format($order->amount,2) }} {{ $order->created_at->format('d M Y') }} View Track
{{ $orders->links() }}
@endsection