{{ __('Invoice to') }}:{{ $order?->order_address?->billing_first_name . ' ' . $order?->order_address?->billing_last_name }} {{ $order?->order_address?->billing_email }} {{ $order?->order_address?->billing_phone }} {{ $order?->order_address?->billing_address }}, {{ $order?->order_address?->billing_city }}, {{ $order?->order_address?->billing_state }}, {{ $order?->order_address?->billing_country }}. |
{{ __('Invoice from') }}:{{ $setting->app_name }} {{ $contactSection?->email }} {{ $contactSection?->phone }} {{ $contactSection?->address }} |
| {{ __('Product Name') }} | {{ __('Quantity') }} | {{ __('Unit Price') }} | {{ __('Total Amount') }} |
|---|---|---|---|
| {{ $product?->product_name }} | {{ $product?->qty }} | {{ specific_currency_with_icon($order?->payable_currency, $product?->unit_price) }} | {{ specific_currency_with_icon($order?->payable_currency, $product?->total) }} |
{{ __('Payment Method') }}{{ __('Payment') }}: {{ $order?->payment_method }} @if ($order?->transaction_id != 'hand_cash'){{ __('Transaction Id') }}: {{ $order?->transaction_id }} @endif |
{{ __('Sub Total') }} : {{ specific_currency_with_icon($order?->payable_currency, $order?->sub_total) }} @if ($order->discount){{ __('Discount') }} : {{ specific_currency_with_icon($order?->payable_currency, $order?->discount) }} (-) @endif{{ __('Tax') }} : {{ specific_currency_with_icon($order?->payable_currency, $order?->order_tax) }} {{ __('Delivery Charge') }} : {{ $order?->delivery_charge > 0 ? specific_currency_with_icon($order?->payable_currency, $order?->delivery_charge) : __('Free') }} {{ __('Gateway Charge') }} : {{ specific_currency_with_icon($order?->payable_currency, $order?->gateway_charge) }} {{ __('Total') }} : {{ specific_currency_with_icon($order?->payable_currency, $order?->paid_amount) }} |