@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')
{{__('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')}} |