@extends('layouts.dashboard') @section('content')
Description | Quantity | Price | Total |
---|---|---|---|
{{ $item['description'] ?? 'N/A' }} | {{ $item['quantity'] ?? 0 }} | ${{ number_format($item['price'] ?? 0, 2) }} | ${{ number_format(($item['quantity'] ?? 0) * ($item['price'] ?? 0), 2) }} |
No items found |
{{ $invoice->notes }}