@extends('layouts.app') @section('title', $invoice->invoice_number) @section('page-title', $invoice->invoice_number) @section('content')
| Description | Qty | Unit Price | Total |
|---|---|---|---|
| {{ $item->description }} | {{ $item->quantity }} | ₦{{ number_format($item->unit_price, 2) }} | ₦{{ number_format($item->total, 2) }} |
| Subtotal | ₦{{ number_format($invoice->subtotal, 2) }} | ||
| VAT ({{ $invoice->vat_rate }}%) | ₦{{ number_format($invoice->vat_amount, 2) }} | ||
| Discount | -₦{{ number_format($invoice->discount, 2) }} | ||
| Total | ₦{{ number_format($invoice->total, 2) }} | ||