@extends('backend.layouts.app') @section('title', 'Create Page') @push('styles') @endpush @section('content') @php $pageTitle = 'Create Page'; $indexRoute = 'frontend-site.pages.index'; $indexLabel = 'Pages'; $indexRouteParams = $selectedSiteId ? ['site_id' => $selectedSiteId] : []; $parentRoute = 'frontend-site.sites.index'; $parentLabel = 'Sites'; $componentCodes = $components->pluck('code')->toArray(); $componentBlocks = $components->map(fn($c) => ['code' => $c->code, 'name' => $c->name])->values()->toArray(); $grouped = $components->groupBy('category'); @endphp @include('backend.layouts.partials._page_header')
Create a new page and assign components.