@extends('layouts.app') @section('title', 'Product — '.$product->name) @section('actions') POS Edit
@endsection @section('content')| Date | Invoice | Qty | Unit Price | Line Total |
|---|---|---|---|---|
| {{ optional($item->sale)->sale_date?->format('d M Y') ?? '—' }} | @if($item->sale){{ $item->sale->invoice_number }}@else — @endif | {{ $item->quantity }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->line_total, 2) }} |
| No sales yet. | ||||