@extends('front.layouts.main') @section('content') @if($data['total'] > 0)

ORDER HISTORY

@foreach($data['data'] as $order)
{{ $order['order_number'] }}
{{ date('d.m.Y',strtotime($order['order_date'])) }}
@if($order['status']==5)
Cancelled
@else
{{ strtoupper($order['payment_mode']) }}
@endif
{{ config('constants.CURRENCY_SYMBOL').' '.number_format($order['totalPrice']) }}
@endforeach
Previous Next
@else

ORDERS NOT FOUND

@endif @endsection @section('js') @endsection