@extends('layouts.app') @section('title', 'Print Invoice') @section('content')
Print and download invoice
{{ $invoiceNumber ?? 'INV-0001' }}
{{ $companyName ?? 'Company Name' }}
{{ $companyAddress ?? 'Address' }}
{{ $companyPhone ?? 'Phone' }}
{{ $customerName ?? 'Customer Name' }}
{{ $customerEmail ?? 'email@example.com' }}
{{ $customerAddress ?? 'Customer Address' }}
Invoice Date
{{ $invoiceDate ?? 'N/A' }}
Due Date
{{ $dueDate ?? 'N/A' }}
| Description | Qty | Unit Price | Amount |
|---|---|---|---|
| {{ $itemDescription ?? 'Item Description' }} | {{ $quantity ?? 1 }} | Rs. {{ number_format($unitPrice ?? 0, 2) }} | Rs. {{ number_format($amount ?? 0, 2) }} |