@php // Switched off in Admin -> Pages: the hero does not draw. if (!section_on('hero-restaurant')) { return; } /** * Restaurant-page hero — a slider that spotlights featured restaurants (one slide each): a * full-bleed cover with a dark scrim and a premium overlay card. Reuses the .qm-heroslider * shell (home.js drives it); the slide internals are this page's own design. * @var array $shopBlocks [ ['shop'=>restaurantRow, 'items'=>..], ... ] */ $shops = array_slice(array_map(static fn ($b) => $b['shop'], $shopBlocks ?? []), 0, 4); if (!$shops) { return; } $n = count($shops); @endphp