{{-- meta tags --}} {{-- lang supports inclusion --}} @php /* main font will be set on locale based */ $mainFontFamily = app()->getLocale() === 'ar' ? 'DejaVu Sans' : 'Noto Sans'; @endphp {{-- main css --}}
{{ ucwords(trans('shop::app.customer.account.order.view.bill-to')) }} | @if ($invoice->order->shipping_address){{ ucwords(trans('shop::app.customer.account.order.view.ship-to')) }} | @endif
---|---|
{{ $invoice->order->billing_address->company_name ?? '' }} {{ $invoice->order->billing_address->name }} {{ $invoice->order->billing_address->address1 }} {{ $invoice->order->billing_address->city }} {{ $invoice->order->billing_address->state }} {{ core()->country_name($invoice->order->billing_address->country) }} {{ $invoice->order->billing_address->postcode }} {{ __('shop::app.customer.account.order.view.contact') }} : {{ $invoice->order->billing_address->phone }} |
@endif
@if ($invoice->order->shipping_address)
{{ $invoice->order->shipping_address->company_name ?? '' }} {{ $invoice->order->shipping_address->name }} {{ $invoice->order->shipping_address->address1 }} {{ $invoice->order->shipping_address->city }} {{ $invoice->order->shipping_address->state }} {{ core()->country_name($invoice->order->shipping_address->country) }} {{ $invoice->order->shipping_address->postcode }} {{ __('shop::app.customer.account.order.view.contact') }} : {{ $invoice->order->shipping_address->phone }} |
@endif
{{ __('shop::app.customer.account.order.view.payment-method') }} | @if ($invoice->order->shipping_address){{ __('shop::app.customer.account.order.view.shipping-method') }} | @endif
---|---|
{{ core()->getConfigData('sales.paymentmethods.' . $invoice->order->payment->method . '.title') }}
@php $additionalDetails = \Webkul\Payment\Payment::getAdditionalDetails($invoice->order->payment->method); @endphp
@if (! empty($additionalDetails))
{{ $additionalDetails['value'] }} |
@if ($invoice->order->shipping_address)
{{ $invoice->order->shipping_title }} | @endif
{{ __('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.qty') }} | {{ __('shop::app.customer.account.order.view.subtotal') }} | {{ __('shop::app.customer.account.order.view.tax-amount') }} | {{ __('shop::app.customer.account.order.view.grand-total') }} |
---|---|---|---|---|---|---|
{{ $item->child ? $item->child->sku : $item->sku }} | {{ $item->name }} @if (isset($item->additional['attributes'])) | @endif{{ core()->formatPrice($item->price, $invoice->order->order_currency_code) }} | {{ $item->qty }} | {{ core()->formatPrice($item->total, $invoice->order->order_currency_code) }} | {{ core()->formatPrice($item->tax_amount, $invoice->order->order_currency_code) }} | {{ core()->formatPrice(($item->total + $item->tax_amount), $invoice->order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.subtotal') }} | - | {{ core()->formatPrice($invoice->sub_total, $invoice->order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.shipping-handling') }} | - | {{ core()->formatPrice($invoice->shipping_amount, $invoice->order->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.discount') }} | - | {{ core()->formatPrice($invoice->discount_amount, $invoice->order_currency_code) }} |
{{ __('shop::app.customer.account.order.view.tax') }} | - | {{ core()->formatPrice($invoice->tax_amount, $invoice->order->order_currency_code) }} |
|
||
{{ __('shop::app.customer.account.order.view.grand-total') }} | - | {{ core()->formatPrice($invoice->grand_total, $invoice->order->order_currency_code) }} |