{{--Customer order detail page--}} @extends('shop::customers.account.index') @section('page_title') {{ __('shop::app.customer.account.order.view.page-tile', ['order_id' => $order->increment_id]) }} @endsection @section('page-detail-wrapper')
{{ __('shop::app.customer.account.order.view.page-tile', ['order_id' => $order->increment_id]) }}
@if($order->base_balance_amount > 0 && $order->is_balance_pay_active) @endif
Order Id : #{{$order->increment_id}}
Order Status : {{$order->order_status}}
Order placed on : {{$order->created_at}}
@foreach ($order->items as $item) @if($loop->last) @if ($order->base_discount_amount > 0) @endif @endif @endforeach
{{ __('shop::app.customer.account.order.view.SKU') }} {{ __('shop::app.customer.account.order.view.product-name') }} {{ __('shop::app.customer.account.order.view.price') }} {{ __('shop::app.customer.account.order.view.item-status') }} {{ __('shop::app.customer.account.order.view.subtotal') }}
sampleProd {{ $item->getTypeInstance()->getOrderedItem($item)->sku }} {{ $item->name }} {{ core()->formatPrice($item->price, $order->order_currency_code) }} {{ __('shop::app.customer.account.order.view.item-ordered', ['qty_ordered' => $item->qty_ordered]) }} {{ $item->qty_invoiced ? __('shop::app.customer.account.order.view.item-invoice', ['qty_invoiced' => $item->qty_invoiced]) : '' }} {{ $item->qty_shipped ? __('shop::app.customer.account.order.view.item-shipped', ['qty_shipped' => $item->qty_shipped]) : '' }} {{ $item->qty_refunded ? __('shop::app.customer.account.order.view.item-refunded', ['qty_refunded' => $item->qty_refunded]) : '' }} {{ $item->qty_canceled ? __('shop::app.customer.account.order.view.item-canceled', ['qty_canceled' => $item->qty_canceled]) : '' }} {{ core()->formatPrice($item->total, $order->order_currency_code) }}
{{ __('shop::app.customer.account.order.view.subtotal') }} {{ core()->formatPrice($order->sub_total, $order->order_currency_code) }}
{{ __('shop::app.customer.account.order.view.shipping-handling') }} {{ core()->formatPrice($order->shipping_amount, $order->order_currency_code) }}
{{ __('shop::app.customer.account.order.view.tax') }} {{ core()->formatPrice($order->tax_amount, $order->order_currency_code) }}
{{ __('shop::app.customer.account.order.view.discount') }} {{ core()->formatPrice($order->discount_amount, $order->order_currency_code) }}
{{ __('shop::app.customer.account.order.view.grand-total') }} {{ core()->formatPrice($order->grand_total, $order->order_currency_code) }}
{{ __('shop::app.customer.account.order.view.total-paid') }} {{ core()->formatPrice($order->base_paid_amount, $order->order_currency_code) }}
{{ __('shop::app.customer.account.order.view.total-refunded') }} {{ core()->formatPrice($order->grand_total_refunded, $order->order_currency_code) }}
{{ __('shop::app.customer.account.order.view.total-due') }} {{ core()->formatPrice($order->base_balance_amount, $order->order_currency_code) }}
{{ $order->billing_address->name }}
General Payment Info.
{{ __('shop::app.customer.account.order.view.payment-method') }} : {{ core()->getConfigData('sales.paymentmethods.' . $order->payment->method . '.title') }}
Payment Status : {{strtoupper($order->status)}}
Currency : {{$order->order_currency_code}}
@if($order->payment->method === 'BAJAJ-FINANCE' && !empty($order->bajajResponseAagainstCart->dump))
Bajaj Payment Info.
{{ __('CSID') }} : {{$order->bajajResponseAagainstCart->dump->authResponse->DEALID}}
Gross loan amount : {{core()->currency($order->bajajResponseAagainstCart->dump->authResponse->LOANAMT_GROSS)}}
Emi duration : {{$order->bajajResponseAagainstCart->dump->authResponse->TENURE_GROSS}}
Emi amount : {{core()->currency($order->bajajResponseAagainstCart->dump->authResponse->EMIAMT)}}
Down payment : {{core()->currency($order->bajajResponseAagainstCart->dump->authResponse->DOWNPAYMENT)}}
Processing fee : {{core()->currency($order->bajajResponseAagainstCart->dump->authResponse->PROCESSINGFEE)}}
@endif
@if ($order->invoices->count())
{{ __('shop::app.customer.account.order.view.page-tile', ['order_id' => $order->increment_id]) }}
@forelse($order->invoices as $invoice) @empty @endforelse
# {{ __('admin::app.sales.invoices.invoice-id') }} {{ __('admin::app.sales.invoices.date') }} {{ __('admin::app.sales.invoices.action') }}
{{ $invoice->id }} {{ $invoice->invoice_no }} {{ $invoice->created_at }}
We could not find any records.
@endif @if ($order->shipments->count())
{{ __('shop::app.customer.account.order.view.page-tile', ['order_id' => $order->increment_id]) }}
@forelse($order->shipments as $shipment) @empty @endforelse
# {{ __('admin::app.sales.shipments.tracking-number') }} {{ __('admin::app.sales.shipments.carrier-title') }} {{ __('admin::app.sales.shipments.date') }}
{{ $shipment->id }} {{ $shipment->track_number }} {{ config('shipping.courierPartners')[$shipment->carrier_title] }} {{$shipment->created_at}}
We could not find any records.
@endif @if ($order->refunds->count())
{{ __('shop::app.customer.account.order.view.page-tile', ['order_id' => $order->increment_id]) }}
@forelse($order->refunds as $refund) @empty @endforelse
# {{ __('admin::app.sales.refunds.refund-id') }} {{ __('admin::app.sales.refunds.date') }} {{ __('admin::app.sales.refunds.refund-amount') }} {{ __('admin::app.sales.refunds.cancellation-amount') }}
{{ $refund->id }} {{ $refund->refund_id }} {{ $refund->created_at }} {{ core()->currency($refund->refund_amount) }} {{ core()->currency($refund->cancellation_amount) }}
We could not find any records.
@endif {!! view_render_event('bagisto.shop.customers.account.orders.view.after', ['order' => $order]) !!}
@endsection