@extends('layouts.app') @section('page-title', 'Product Sales') @section('content')
| ID | Product | Quantity | Unit Price | Total Amount | Customer | Date | Action |
|---|---|---|---|---|---|---|---|
| #{{ str_pad($sale->id, 6, '0', STR_PAD_LEFT) }} | {{ $sale->product->name ?? 'N/A' }} | {{ $sale->quantity }} | Rs {{ number_format($sale->unit_price, 2) }} | Rs {{ number_format($sale->total_amount, 2) }} |
@if($sale->customer_name)
{{ $sale->customer_name }}
@if($sale->customer_phone)
{{ $sale->customer_phone }} @endif @else Walk-in @endif |
{{ $sale->created_at->format('d/m/Y h:i A') }} | @if($sale->notes) @endif |
| No sales found. Make your first sale | |||||||