{{-- resources/views/public/page.blade.php --}} {{ $page->title }} - {{ $website->name }} @if($website->theme) @endif @if($isPreview)
PREVIEW MODE - This is how your page will look to visitors
@endif @if($website->menus->count() > 0) @php $mainMenu = $website->menus->where('location', 'main')->first() ?? $website->menus->first(); @endphp @if($mainMenu && $mainMenu->items->count() > 0) @endif @endif
@if(!$page->is_home)

{{ $page->title }}

@endif
{!! $page->getRenderedContent() !!}
@if(!$isPreview || ($isPreview && $website->settings['show_footer'] ?? true)) @endif @if($website->settings['google_analytics'] ?? false) @endif