@extends('layouts.admin') @section('title', 'Invoice Details') @section('content')
| Description | Quantity | Unit Price | Total |
|---|---|---|---|
| {{ $item->description }} | {{ $item->quantity }} | Rs. {{ number_format($item->unit_price, 2) }} | Rs. {{ number_format($item->total_price, 2) }} |
{{ $invoice->notes }}