@extends('frontend.layouts.master') @section('meta_title', __('Invoice') . ' || ' . $order?->order_id) @section('header') @include('frontend.layouts.header-layout.three') @endsection @section('contents')
@include('frontend.profile.partials.sidebar')

{{ __('Invoice') }}

{{ __('Order Id') }}: #{{ $order?->order_id }}
{{ __('Date') }}: {{ formattedDate($order?->created_at) }}
{{ __('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 }}

@foreach ($order?->order_products as $product) @endforeach
{{ __('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) }}

{{ __('Print') }} {{ __('Print') }}
@include('frontend.partials.marquee') @endsection @section('footer') @include('frontend.layouts.footer-layout.two') @endsection