@extends('backend.layouts.app') @section('title') {{ setting('inv_prefix') }}{{ optional(optional($orderItem->order)->orderGroup)->order_code }} @endsection @section('content')
{{ optional($shippingAddress)->address_line_1 }}, {{ optional($shippingAddress->city_data)->name }}, {{ optional($shippingAddress->state_data)->name }}, {{ optional($shippingAddress->country_data)->name }}
@endif{{ optional($billingAddress)->address_line_1 }}, {{ optional($billingAddress->city_data)->name }}, {{ optional($billingAddress->state_data)->name }}, {{ optional($billingAddress->country_data)->name }}
@endif| {{ __('product.s_l') }} | {{ __('product.title') }} | {{ __('product.unit_price') }} | {{ __('product.qty') }} | {{ __('product.total_price') }} |
|---|---|---|---|---|
| 1 |
{{ optional($product)->name ? optional($product)->name : '--' }}@if (!empty($orderItem->product_variation))
@foreach (generateVariationOptions($orderItem->product_variation->combinations) as $variation)
{{ $variation['name'] }}:
@foreach ($variation['values'] as $value)
{{ $value['name'] }}
@endforeach
@if (!$loop->last)
,
@endif
@endforeach
@endif
|
{{ \Currency::format($orderItem->unit_price) }} | {{ $orderItem->qty }} | @if ($orderItem->refundRequest && $orderItem->refundRequest->refund_status == 'refunded') {{ $orderItem->refundRequest->refund_status }} @endif {{ \Currency::format($orderItem->total_price) }} |
Tax : |
{{ \Currency::format($orderItem->total_tax) }} | |||
{{ __('product.shipping_cost') }} |
{{ \Currency::format($orderItem->total_shipping_cost) }} | |||
{{ __('product.total') }} |
{{ \Currency::format($totalOrderPrice) }} | |||
{{ __('product.coupon_discount') }} |
{{ \Currency::format(optional(optional($orderItem->order)->orderGroup)->total_coupon_discount_amount) }} | |||
| {{ __('product.s_l') }} | {{ __('product.title') }} | {{ __('product.unit_price') }} | {{ __('product.qty') }} | {{ __('product.total_price') }} |
|---|---|---|---|---|
| {{ $key + 1 }} |
{{ optional($product)->name ? optional($product)->name : '--' }}@if (!empty($orderItem->product_variation))
@foreach (generateVariationOptions($item->product_variation->combinations) as $variation)
{{ $variation['name'] }}:
@foreach ($variation['values'] as $value)
{{ $value['name'] }}
@endforeach
@if (!$loop->last)
,
@endif
@endforeach
@endif
|
{{ \Currency::format($item->unit_price) }} | {{ $item->qty }} | @if ($item->refundRequest && $item->refundRequest->refund_status == 'refunded') {{ $item->refundRequest->refund_status }} @endif {{ \Currency::format($item->total_price) }} |
Tax : |
{{ \Currency::format($item->total_tax) }} | |||
{{ __('product.shipping_cost') }} |
{{ \Currency::format($orderItem->total_shipping_cost) }} | |||
{{ __('product.total') }} |
{{ \Currency::format($totalOrderPrice) }} | |||
{{ __('product.coupon_discount') }} |
{{ \Currency::format(optional(optional($orderItem->order)->orderGroup)->total_coupon_discount_amount) }} | |||
{{ __('product.grand_total') }} |
{{ \Currency::format(optional(optional($orderItem->order)->orderGroup)->grand_total_amount) }} | |||