@extends('layouts.app') @section('title', 'Invoice ' . $invoice->invoice_number) @section('content')
| # | Product | Qty | Rate | Amount |
|---|---|---|---|---|
| {{ $idx + 1 }} | {{ $item->product_name }} | {{ $item->quantity }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->total, 2) }} |
| Subtotal | {{ number_format($invoice->subtotal, 2) }} |
| Discount | - {{ number_format($invoice->discount_amount, 2) }} |
| GST ({{ $invoice->gst_percent }}%) | {{ number_format($invoice->gst_amount, 2) }} |
| Total | {{ number_format($invoice->total, 2) }} |
Payment: {{ $invoice->payment_type }}
@if($invoice->notes)Note: {{ $invoice->notes }}
@endif