@extends('layouts.app') @section('title', 'Print Invoice') @section('content')

Print Invoice

Print and download invoice

INVOICE

{{ $invoiceNumber ?? 'INV-0001' }}

{{ $companyName ?? 'Company Name' }}

{{ $companyAddress ?? 'Address' }}

{{ $companyPhone ?? 'Phone' }}

Bill To

{{ $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) }}
Subtotal Rs. {{ number_format($subtotal ?? 0, 2) }}
Tax Rs. {{ number_format($tax ?? 0, 2) }}
Total Rs. {{ number_format($total ?? 0, 2) }}
Back
@endsection