@extends('admin.layout.master') @section('pageTitle', (isset($pageTitle)) ? $pageTitle : config('app.APP_NAME') ) @section('pageDescription', (isset($pageDescription)) ? $pageDescription : config('app.APP_NAME') ) @section('content')
{{ __('admin/orders.view.labels.sku') }} | {{ __('admin/orders.view.labels.part-no') }} | {{ __('admin/orders.view.labels.qty-captured') }} | {{ __('admin/orders.view.labels.qty-real-time') }} | {{ __('admin/orders.view.labels.product-name') }} | {{ __('admin/orders.view.labels.qty') }} | {{ __('admin/orders.view.labels.price') }} | {{ __('admin/orders.view.labels.discounted-price') }} | {{ __('admin/orders.view.labels.discount') }} | {{ __('admin/orders.view.labels.total') }} |
---|---|---|---|---|---|---|---|---|---|
{{ $item->product->sku }} | {{$item->product->part_no }} |
{{--TODO : NTW--}}
{{--
--}}
|
{{--TODO: NTW--}}
@if($item->qty_realtime)
@else
-
@endif
{{--Refresh Stock--}} |
{{ $item->product->name }} | {{ $item->quantity }} | {{ \App\Helpers\CustomHelper::getCurrency($item->base_price) }} | {{ \App\Helpers\CustomHelper::getCurrency($item->base_final_price) }} | {{ \App\Helpers\CustomHelper::getCurrency($item->base_discount_amount) }} | {{ \App\Helpers\CustomHelper::getCurrency($item->base_grand_total) }} |
{{ __('admin/orders.view.labels.subtotal') }} | - | {{ \App\Helpers\CustomHelper::getCurrency($order->base_sub_total) }} | |||||||
{{ __('admin/orders.view.labels.shipping-handling') }} | - | {{ \App\Helpers\CustomHelper::getCurrency(null) }} | |||||||
{{ __('admin/orders.view.labels.discount') }} | - | {{ \App\Helpers\CustomHelper::getCurrency($order->base_discount_amount) }} | |||||||
{{ __('admin/orders.view.labels.tax') }} | - | {{ \App\Helpers\CustomHelper::getCurrency(null) }} | |||||||
{{ __('admin/orders.view.labels.grand-total') }} | - | {{ \App\Helpers\CustomHelper::getCurrency($order->base_grand_total) }} | |||||||
{{ __('admin/orders.view.labels.total-paid') }} | - | {{ \App\Helpers\CustomHelper::getCurrency($order->base_paid_amount) }} | |||||||
{{ __('admin/orders.view.labels.total-due') }} | - | {{ \App\Helpers\CustomHelper::getCurrency($order->base_balance_amount) }} | |||||||
{{ __('admin/orders.view.labels.total-refunded') }} | - | {{ \App\Helpers\CustomHelper::getCurrency($order->refund->refund_amount) }} | |||||||
{{ __('admin/refund.listing.labels.cancellation-amount') }} | - | {{ \App\Helpers\CustomHelper::getCurrency($order->refund->cancellation_amount) }} |
{!!__('admin/invoice.listing.labels.invoice-id')!!} | {!!__('admin/invoice.listing.labels.invoice-no')!!} | {!!__('admin/invoice.listing.labels.invoice-actual-date')!!} | {!!__('admin/invoice.listing.labels.invoice-generated-on')!!} | {!!__('admin/invoice.listing.labels.e-way-bill-no')!!} | {!!__('admin/invoice.listing.labels.action')!!} |
---|---|---|---|---|---|
{{$order->invoice->id}} | {{$order->invoice->invoice_no}} | {{$order->invoice->invoice_date}} | {{$order->invoice->created_at}} | {{$order->invoice->e_way_bill_no ?? 'N/A'}} |
{!!__('admin/pickup.listing.labels.order-pick-up-id')!!} | {!!__('admin/pickup.listing.labels.order-pick-up-at')!!} |
---|---|
{{$order->pickUp->id}} | {{$order->pickUp->pickedup_at}} |
{!!__('admin/shipment.listing.labels.shipment-id')!!} | {!!__('admin/shipment.listing.labels.shipped-no')!!} | {!!__('admin/shipment.listing.labels.shipment-tracking-no')!!} | {!!__('admin/shipment.listing.labels.shipment-carrier')!!} | {!!__('admin/shipment.listing.labels.action')!!} |
---|---|---|---|---|
{{$order->shipment->id}} | {{$order->shipment->created_at}} | {{$order->shipment->track_number}} | {{__('admin/shipment.create.labels.carriers')[$order->shipment->carrier_title]['value']}} |
{!!__('admin/delivery.listing.labels.delivery-id')!!} | {!!__('admin/delivery.listing.labels.delivery-date')!!} |
---|---|
{{$order->delivery->id}} | {{$order->delivery->delivery_date}} |
{!!__('admin/refund.listing.labels.id')!!} | {!!__('admin/refund.listing.labels.refund-id')!!} | {!!__('admin/refund.listing.labels.refund-amount')!!} | {!!__('admin/refund.listing.labels.cancellation-amount')!!} |
---|---|---|---|
{{$order->refund->id}} | {{$order->refund->refund_id}} | {{\App\Helpers\CustomHelper::getCurrency($order->refund->refund_amount)}} | {{\App\Helpers\CustomHelper::getCurrency($order->refund->cancellation_amount)}} |