@extends('customer.layout.master') @section('pageTitle', (isset($pageTitle)) ? $pageTitle : config('app.APP_NAME') ) @section('pageDescription', (isset($pageDescription)) ? $pageDescription : config('app.APP_NAME') ) @section('pageKeywords', (isset($pageKeywords)) ? $pageKeywords : config('app.APP_NAME') ) @section('content')
@include('customer.layout.side-bar')
{{ __('customer/order.labels.title') }}
@forelse($orders as $order) @empty @endforelse
{{__('customer/order.labels.order-id')}} {{__('customer/order.labels.order-placed-on')}} {{__('customer/order.labels.order-grand-total')}} {{__('customer/order.labels.order-paid-amount')}} {{__('customer/order.labels.order-items-count')}} {{__('customer/order.labels.order-status')}} {{__('customer/order.labels.order-action')}}
{{$order->increment_id}} {{$order->created_at}} {{\App\Helpers\CustomHelper::getCurrency($order->base_grand_total)}} {{\App\Helpers\CustomHelper::getCurrency($order->base_paid_amount)}} {{$order->items_count}} {!!$order->order_status_formatted!!}
{{__('customer/order.exceptions.no-records')}}
@include('shared.pagination', ['paginator' => $orders])
@endsection