@extends('landingpage::themes.ai_website_maker.layouts.app') {{-- $page is the LpPage model instance. $activeTheme is the string name of the active theme. $businessData is an array of additional data fetched by FrontendPageController::getBusinessDataForPage() --}} @section('content') @if($page->sections->isNotEmpty()) @foreach($page->sections->sortBy('order') as $section) @endforeach @else {{-- Fallback content if no sections are defined for the page --}}
{!! $page->content !!}
@endif @endsection