{{-- Main Stats Grid --}}
@foreach ($mainStats as $stat)
{{ $stat['label'] }}
@if ($stat['prefix'])
{{ $stat['prefix'] }}
@endif
{{ $stat['value'] }}
{{ $stat['desc'] }}
@endforeach
{{-- Distribution Row --}}
{{-- Units Breakdown --}}
{{-- Production --}}
Produksi (Unit)
Hari Ini
@forelse($totalEggsByUnit as $item)
{{ $item['unit_name'] }}
Bagus
{{ $item['total_good'] }}
Pecah
{{ $item['total_broken'] }}
@empty
Belum ada data produksi
@endforelse
{{-- Delayed --}}
Tertunda (Unit)
Hari Ini
@forelse($totalDelayedByUnit as $item)
{{ $item['unit_name'] }}
{{ $item['total'] }}
@empty
Tidak ada barang tertunda hari
ini
@endforelse
{{-- Top Customers Today --}}
Top Pelanggan Hari Ini
@forelse ($topCustomers as $customer)
{{ $customer->name }}
{{ $customer->phone_number ?? 'Telp tidak ada' }}
Transaksi
Rp
{{ $formatNumber($customer->total_spent) }}
@empty
Belum ada transaksi hari ini
@endforelse