@php $directory = app()->getLocale() == 'ar' ? 'rtl' : 'ltr'; @endphp
{{ config('app.url') }}
{{ $generaleSetting?->email }}
{{ $generaleSetting?->mobile }}
{{ __('Business Address') }}
{{ __($generaleSetting?->address) }}
{{ $user?->name }}
@if ($address?->address_type) {{ __($address?->address_type) }} @endif @if ($address?->address_line) ,{{ $address->address_line }} @endif @if ($address?->address_line2) ,{{ $address->address_line2 }} @endif @if ($address?->area) ,{{ $address?->area }} @endif
{{ __('Invoice of') }} ({{ $generaleSetting?->currency ?? '$' }})
| {{ __('Payment Method') }} | {{ __('Invoice Number') }} | {{ __('Invoice Date') }} | {{ __('Order Date') }} |
|---|---|---|---|
| {{ $order->payment_method->value }} | #{{ $order->prefix . $order->order_code }} | {{ now()->format('d F, Y') }} | {{ $order->created_at->format('d F, Y') }} |
| {{ __('Item') }} | {{ __('Item Name') }} | {{ __('Rate') }} | {{ __('Quantity') }} | {{ __('Size') }} | {{ __('Color') }} | {{ __('Price') }} | ||
|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }}. |
|
{{ showCurrency($price) }} | {{ $product->pivot->quantity }} | {{ $product->pivot->size ?? '--' }} | {{ $product->pivot->color ?? '--' }} | {{ showCurrency($price * $product->pivot->quantity) }} |
{{ __('Sub Total') }}
{{ showCurrency($order->total_amount) }}
{{ __('Discount') }}
{{ showCurrency($order->coupon_discount) }}
{{ __('Delivery Charge') }}
{{ showCurrency($order->delivery_charge) }}
{{ $vatTax->name . '(' . $vatTax->percentage . '%)' }}
{{ showCurrency($vatTax->amount) }}
{{ __('Total Tax Amount') }}
{{ showCurrency($order->tax_amount) }}
{{ __('Total Amount') }}
{{ showCurrency($order->payable_amount) }}
{{ showCurrency($order->total_amount) }}
{{ __('Sub Total') }}
{{ showCurrency($order->coupon_discount) }}
{{ __('Discount') }}
{{ showCurrency($order->delivery_charge) }}
{{ __('Delivery Charge') }}
{{ showCurrency($order->tax_amount) }}
{{ __('VAT & Tax') }}
{{ showCurrency($order->payable_amount) }}
{{ __('Total Amount') }}