@extends('layouts.app') @section('title', 'View Invoice') @section('content')
| # | Product Name | Qty | Rate | Amount |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->product_name }} | {{ number_format($item->qty, 2) }} | ₹{{ number_format($item->rate, 2) }} | ₹{{ number_format($item->amount, 2) }} |
| Subtotal | ₹{{ number_format($invoice->subtotal, 2) }} |
| Discount | ₹{{ number_format($invoice->discount, 2) }} |
| Grand Total | ₹{{ number_format($invoice->grand_total, 2) }} |