@extends('layouts.app') @section('title', 'Invoice Details - Quick OMS') @section('content')
| Item Description | Quantity | Price | Disc. | Tax | Amount |
|---|---|---|---|---|---|
|
{{ $item->item_name }} {{ $item->description }} |
{{ $item->quantity }} | ${{ number_format($item->unit_price, 2) }} | ${{ number_format($item->discount, 2) }} | {{ $item->tax_rate }}% | ${{ number_format($item->total, 2) }} |