@php $appName = \App\Models\Setting::get_value('app_name'); if($appName == "" || $appName == null){ $appName = "eGrocer"; } $supportEmail = \App\Models\Setting::get_value('support_email'); if($supportEmail == "" || $supportEmail == null){ $supportEmail = ""; } $supportNumber = \App\Models\Setting::get_value('support_number'); if($supportNumber == "" || $supportNumber == null){ $supportNumber = ""; } $logo = \App\Models\Setting::get_value('logo') ?? ""; if($logo!==""){ $logo_full_path = url('/').'/storage/'.$logo; }else{ $logo_full_path = asset('images/favicon.png'); } $currency = \App\Models\Setting::get_value('currency') ?? '$'; @endphp
|
InvoiceNo : #{{ $order->order_item_id }} |
Mo. {{ $supportNumber }} |
|
|
From
{{ $appName }}
Email: {{ $supportEmail }}
Customer Care : {{ $supportNumber }} @if($order->delivery_boy_name) Delivery By : {{ $order->delivery_boy_name ?? "" }} @elseDelivery By : Not Assigned @endif |
Shipping Address
{{ $order->user_name ?? "" }}
{{ $order->address ?? "" }}
{{ $order->mobile }} / {{ $order->alternate_mobile }} {{ $order->user_email }} |
Retail Invoice
Order No : #{{ $order->order_item_id }}
Date: {{ \Carbon\Carbon::parse($order->orders_created_at)->format('d-m-y h:i A') }}
|
Sold By {{ $order->store_name }}Name: {{ $order->seller_name }} Email: {{ $order->seller_email }} Mobile No. : {{ $order->seller_mobile }} |
Pan Number : {{ $order->pan_number }} {{ $order->tax_name }} : {{ $order->tax_number }} @if($order->delivery_boy_name)Delivery By : {{ $order->delivery_boy_name ?? "" }} @elseDelivery By : Not Assigned @endif |
| Sr No. | Name | Unit | Price | Tax {{ $currency }} (%) | Qty | SubTotal ( {{ $currency }} ) |
|---|---|---|---|---|---|---|
| {{ $index+1 }} |
{{ $item->product_name }} |
{{ $item->variant_name }} |
{{ ($item->discounted_price != 0 && $item->discounted_price != "") ? $item->discounted_price : $item->price }} | {{ $item->tax_amount. " (" .$item->tax_percentage."%)" }} |
{{ $item->quantity }} |
{{ $item->sub_total }} |
@php
$total_tax_amount = $total_tax_amount + $item->tax_amount;
$total_quantity = $total_quantity + $item->quantity;
$total_sub_total = $total_sub_total + $item->sub_total;
@endphp
| Total | {{ $total_tax_amount }} |
{{ $total_quantity }} |
{{ $total_sub_total }} |
|||
|
Payment Method : {{ strtoupper($order->payment_method) }} Thank you for shopping With Us. |
|