@php // Switched off in Admin -> Pages: the band does not draw, on any layout that includes it. if (!section_on('popular-dishes')) { return; } /** * Popular dishes — a tall promo (or paid box ad) beside a grid of popular menu items. * @var array $popular menu-item rows * @var string $cols Bootstrap column classes per dish card (default 4-up on lg) * @var int $limit how many dishes to show (default 8) * @var string $rowClass extra classes on the dish grid row (e.g. row-cols-lg-5 with $cols='col') */ $popular = collect($popular ?? [])->all(); // accepts an array or a collection if (empty($popular)) { echo partial('sections/band-empty', ['eyebrow' => t('home.popular_eyebrow'), 'title' => t('home.popular'), 'icon' => 'fa-utensils', 'msg' => t('home.empty_dishes')]); return; } $cols = $cols ?? 'col-lg-3 col-sm-6'; $limit = (int) ($limit ?? 8); $rowClass = $rowClass ?? ''; @endphp