@extends('layouts.cashier') @section('content')
| Product | Type | Quantity/Weight | Unit Price | Total |
|---|---|---|---|---|
| {{ $item->product->product_name }} | {{ $item->product->product_type }} | @if($item->product->product_type === 'Loose Weight' && $item->weight) {{ number_format($item->weight, 2) }} kg @else {{ $item->quantity }} @endif | Rs.{{ number_format($item->unit_price, 2) }} | Rs.{{ number_format($item->total_price, 2) }} |
{{ $sale->notes }}