@php $pills = [ ['label' => 'Day', 'icon' => 'sun', 'active' => true], ['label' => 'Sunset', 'icon' => 'sunset', 'active' => false], ['label' => 'All Day', 'icon' => 'clock', 'active' => false], ['label' => 'Wellness', 'icon' => 'lotus', 'active' => false], ]; @endphp
@foreach ($pills as $pill) $pill['active']])> {{ $pill['label'] }} @endforeach