| Date | Revenue | Cost | Profit |
|---|---|---|---|
| {{ \Illuminate\Support\Carbon::parse($row->sale_date)->format('d M Y') }} | {{ number_format($row->revenue, 2) }} | {{ number_format($row->cost, 2) }} | {{ number_format($row->profit, 2) }} |
| Product | Units Sold | Revenue | Cost | Profit |
|---|---|---|---|---|
|
{{ $row->product_name }}
{{ $row->product_sku }}
|
{{ $row->units_sold }} | {{ number_format($row->revenue, 2) }} | {{ number_format($row->cost, 2) }} | {{ number_format($row->profit, 2) }} |