@php $versova = new \App\Http\Services\Helpers\Versova(); @endphp Document
Thank You For Your Online Order,
Your Order Number : V-{{ $order->id }}
{{-- --}}
Customer Details
Order No #V{{ $order->id }}
Company Name {{ $order->company_name }}
Customer Name {{ $order->customer_name }}
Order Creation Date {{ $order->created_at->format('d-m-Y') }}
Shipping Address {{ $order->billing_address }}
Zip Code {{ $order->address?->pincode }}
City {{ $order->address?->city }}
Comments {{ $order->comments }}
 
Order Details
@if (!is_null($order->items)) @foreach ($order->items as $item) @endforeach
Item Name Qty Weight Price Total
{{ $item->name }} {{ $item->quantity }} {{ $item->product->weight }} ${{ number_format($item->price, 2) }} ${{ number_format($item->total_amount ?? 0, 2) }}
@endif @if (!is_null($order->saleitems)) @foreach ($order->saleitems as $item) @endforeach
Item Name Qty Weight Price Total
{{ $item->name }} {{ $item->quantity }} {{ $item->saleproduct->weight }} ${{ number_format($item->price, 2) }} ${{ number_format($item->total_amount ?? 0, 2) }}
@endif
{{-- --}} {{-- --}}
Sub Total : ${{ number_format($order->total_amount ?? 0, 2) }}
Taxable Product SubTotal : {{$order->tax_total}}
Taxable Products: ${{ number_format($order->total_amount ?? 0, 2) }}
Coupon Discount : ${{ number_format($order->discount_amount ?? 0, 2) }}
HST 13% : ${{ number_format($order->tax ?? 0, 2) }}
Grand Total : ${{ number_format($order->grand_total ?? 0, 2) }}
Call Us: {{ $versova->settings()->phone }}
Email : {{ $versova->settings()->email }}
  Address: {{ $versova->settings()->address }}
Call Us: {{$homesetting->phone}}
Email : {{$homesetting->contact_email}}
  Address: {{$homesetting->address}}
All Rights Reserved Versova © {{ date('Y') }}