{{ number_format($totalSales) }}
{{ number_format($totalProfit) }}
{{ $sales->count() }}
| Date | Customer | Stock Name | Quantity | Price | Total | Profit |
|---|---|---|---|---|---|---|
| {{ $sale->created_at->format('d/m/Y H:i') }} | {{ $sale->customer->username }} | {{ $sale->product->name }} | {{ $sale->quantity }} | TZS {{ number_format($sale->selling_price_per_unit) }} | TZS {{ number_format($sale->total_price) }} | TZS {{ number_format(($sale->selling_price_per_unit - $sale->product->input_price_per_unit) * $sale->quantity) }} |
No Sales done in this period.