@extends('layouts.public') @section('content') @php // Which landing page this is: its bands read this page's own switches. \App\Services\HomeSection::rendering('marketplace'); /** Marketplace homepage — composed entirely from shared section partials so the same * sections power the cuisine/restaurant/hungry layouts too. * * Every band this page has, and how each one is drawn, is declared in HomeSection. The page is the * order the operator arranged in Admin -> Pages, which forLayout() validates against the declared * palette, so a stored arrangement can neither lose a band nor invent one. * * @var array $cuisines @var array $featured @var array $trending @var array $popular * @var array $deals @var array $posts @var array $stats @var array $collections * @var array $reorders @var array $testimonials */ echo \App\Services\HomeSection::draw('marketplace', get_defined_vars()); @endphp @endsection