@extends('layouts.app') @section('page-title', 'Product Sales This Month') @section('content')

Product Sales This Month

Products sold in {{ Carbon\Carbon::now()->format('F Y') }}

Back to Dashboard
@forelse($sales as $sale) @empty @endforelse
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') }}
No product sales found this month.
@endsection @push('scripts') @endpush