{{__('')}} | {{ __('Products') }} | {{ __('SKU') }} | {{ __('Status') }} | {{ __('Cost') }} | {{ __('Qty') }} | {{ __('Total') }} | {{ __('Refund') }} |
---|---|---|---|---|---|---|---|
{{ optional($details[0]->vendor)->name }} | |||||||
{{ trimWords($detail->product_name, 25) }}
|
{{ trimWords(optional($detail->product)->sku, 10) }} | @php $totalRefund = $detail->refunds()->where('status','Accepted')->sum('quantity_sent') @endphp@if ($totalRefund != $detail->quantity) @if($detail->is_delivery == 1) {{ __('Completed') }} @else @endif @else {{ __('Refunded') }} @endif | {{ formatCurrencyAmount($detail->price) }} | {{ floor(formatCurrencyAmount($detail->quantity)) }} | {{ formatNumber($detail->price * $detail->quantity, optional($order->currency)->symbol) }} | @if ($detail->isRefundable() && preference('order_refund'))@if ($detail->is_delivery == 1 && $totalRefund != $detail->quantity) quantity - $totalRefund }}>{{ __('Apply') }} @endif | @endif
{{ __('Sub Total') }} : | {{ formatNumber(($order->total + $order->other_discount_amount) - ($order->shipping_charge + $order->tax_charge), optional($order->currency)->symbol) }} |
---|---|
{{ __('Shipping') }} {{ !is_null($order->shipping_title) ? "( ". $order->shipping_title . " )" : null }} : | {{ formatNumber($order->shipping_charge, optional($order->currency)->symbol) }} |
{{ __('Tax') }} : | {{ formatNumber($order->tax_charge, optional($order->currency)->symbol) }} |
{{ __('Discount') }} : | {{ formatNumber($order->other_discount_amount, optional($order->currency)->symbol) }} |
{{ __('Grand Total') }} : |
{{ formatNumber($order->total, optional($order->currency)->symbol) }} |