@extends('layouts.app') @section('title', 'Invoice '.$sale->invoice_number) @section('actions') Download PDF New Sale @endsection @section('content')
| Product | Qty | Unit | Total |
|---|---|---|---|
| {{ $item->product->name ?? '—' }} | {{ $item->quantity }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->line_total, 2) }} |