@extends('layouts.app') @section('content')
Back to Logs Registry

ANANT AVINASHI

Premium Handloom Hub Nagpur Corporate Office, Maharashtra
RETAIL INVOICE
{{ $sale->invoice_no }}
Date: {{ \Carbon\Carbon::parse($sale->sale_date)->format('d M, Y') }}
Point of Sale (Terminal)
{{ $sale->exhibition->title ?? $sale->exhibition->name }} City: {{ $sale->exhibition->city ?? 'On Field' }} Venue: {{ $sale->exhibition->location ?? 'Field Terminal' }}
Billed To (Customer)
{{ $sale->customer_name ?? 'Walk-in Buyer' }} Contact: {{ $sale->customer_mobile ?? 'N/A' }} Payment Mode: {{ $sale->payment_mode }}
@foreach($sale->items as $index => $item) @endforeach
# Article Specification Unit Rate Qty Gross Amount
{{ $index + 1 }} {{ $item->product->name ?? 'Handloom Item' }} {{ $item->product->product_code ?? 'N/A' }} ₹{{ number_format($item->unit_price, 2) }} {{ $item->qty }} ₹{{ number_format($item->total_price, 2) }}
Subtotal: ₹{{ number_format($sale->subtotal, 2) }}
Taxes & CGST/SGST (0%): ₹0.00
Grand Total Settlement: ₹{{ number_format($sale->final_total, 2) }}

Thank you for supporting traditional Indian handloom craftsmanship.

This is a computer-generated digital tax invoice sync registry record.
@endsection