{{-- Invoice Section --}}
Invoice No: PI-{{ \Carbon\Carbon::parse($invoice->purchase_date)->format('Y') }}-{{ $invoice->id }}

Purchase Invoice

Date: {{ $invoice->purchase_date }}

Seller Information

Seller Name{{ $invoice->vendor_name ?? 'N/A' }}
CNIC{{ $invoice->seller_cnic }}
Phone{{ $invoice->seller_phone }}
Address{{ $invoice->seller_address }}

Car Information

Make{{ $invoice->make }}
Model{{ $invoice->model }}
Varient{{ $invoice->varient }}
Registration No{{ $invoice->registration_no }}

Payment Information

Purchase Price${{ number_format($invoice->purchase_price) }}
* This invoice confirms that the vehicle with registration number {{ $invoice->registration_no }} was purchased on {{ $invoice->purchase_date }} at a price of ${{ number_format($invoice->purchase_price) }}.
{{-- Receipt Section --}}

Payment Receipt

Payment Information
Total Amount${{ number_format($invoice->purchase_price) }}
Paid Amount${{ number_format($invoice->purchase_price) }}
Balance Due0
Notes: This payment receipt confirms that full payment has been made to the vendor.

Vendor Signature __________________

Purchaser Signature __________________

Printed By: {{ Auth::user()->name }}