🍽️ Menu {{ ucfirst($waktu) }}
@foreach ($komponens as $komponen => $items)
@php
$utama = $items->first();
$alternatif = $items->skip(1)->take(4)->values(); // top 5 total
@endphp
📌 {{ ucfirst($komponen) }}
🌟 {{ $utama->makanan->nama }}
{{ number_format($utama->persentase, 2) }}%
@if ($alternatif->count() > 0)
@foreach ($alternatif as $index => $alt)
-
@if($index == 0) 🥈 @elseif($index == 1) 🥉 @else 🔹 @endif
{{ $alt->makanan->nama }}
{{ number_format($alt->persentase, 2) }}%
@endforeach
@endif
@endforeach