@extends('customer.layout')
@section('title','My Orders')
@section('content')
My Orders
| Order |
Status |
Amount |
Date |
|
@foreach($orders as $order)
| #{{ $order->order_no }} |
{{ ucfirst($order->status) }}
|
LKR {{ number_format($order->amount,2) }} |
{{ $order->created_at->format('d M Y') }} |
View
Track
|
@endforeach
{{ $orders->links() }}
@endsection