Invoice
Company Name: {{@$company->name ?? ''}}
Address: {{@$company->address ?? ''}}
Country: {{@$company->country ?? ''}}
VAT No: {{@$company->vat_number ?? ''}}
Invoice no: {{ $order->order_no ?? '' }}
Invoice Date: {{ $order->created_at->format('d-M-Y') }}
Customer Name: {{ $customer->customer_name ?? '' }}
{{ $customer->address ?? '' }}
Email: {{ $customer->email ?? '' }}
@php $preference = get_preference(); @endphp @if(@$withImage == 1) @endif @if($preference && $preference->columns_display == 1) @endif @php $i = 1; @endphp @foreach ($finalData as $product) {{-- ✅ Show image only if with_image == 1 --}} @if(@$withImage == 1) @endif @if($preference && $preference->columns_display == 1) @endif @endforeach
# Image Product Name Colors Info Price Quantity Total
{{ $i++ }} @if($product->product_image) @else @endif {{ $product->product_name }} @foreach($product->newcolorsinfo as $abc) {{ $abc[0] }}:{{ $abc[1] }}
@endforeach
{{ $product->product_price }} {{ $product->product_qty }} {{ $product->product_total }}
@if($order->discount > 0) @endif
Sub Total: {{ $order->subTotal }}
Discount: {{ $order->discount }}
Net Total inclusive of Vat: {{ $order->netTotal }}