@extends('front.layout.layout') @section('content')

My Account

Order History


@foreach($orders as $order) @endforeach
ID Order Date Status Total Actions
#{{$order->id}} {{date('d F Y h:ia',strtotime($order->created_at))}} {{$order->order_status}} ₹ {{round($order->grand_total,2)}}
@endsection