📊 Daily Operations Report

{{ $tenant->name }} • {{ $date }} • Generated {{ now()->format('d M Y, h:i A') }}

Total Sales
KES {{ number_format($summary['total_sales'], 2) }}
Transactions
{{ $summary['total_transactions'] }}
Stock Value
KES {{ number_format($summary['total_stock_value'], 2) }}

Top 5 Products Today

@forelse($summary['top_products'] as $i => $product) @empty @endforelse
# Product Units Sold Revenue (KES)
{{ $i + 1 }} {{ $product->name }} {{ number_format($product->total_qty, 2) }} {{ number_format($product->total_revenue, 2) }}
No sales recorded today.
@if($low_stock->count() > 0)

⚠️ Low Stock Alert ({{ $low_stock->count() }} items)

@foreach($low_stock as $item) @endforeach
Product Current Stock Threshold Status
{{ $item->name }} {{ $item->current_stock }} {{ $item->unit_type }} {{ $item->low_stock_threshold }} ⚠️ Reorder
@endif