@extends('layouts/contentNavbarLayout') @section('title', 'Custom Page Management') @section('content')

Custom Page Management

Manage custom pages for your application

Custom Page Management Coming Soon

This feature is currently under development. It will allow you to:

  • Create and manage custom pages
  • Define page slugs and content
  • Set page status (active/inactive)
  • Organize pages for menu linking
Current Custom Pages
@php $customPages = \App\Models\CustomPageModel::all(); @endphp @forelse($customPages as $page) @empty @endforelse
ID Page ID Page Slug Status Created Actions
{{ $page->id }} {{ $page->page_id }} {{ $page->page_slug }} @if($page->status) Active @else Inactive @endif {{ $page->created_at->format('M d, Y') }}

No custom pages found. Run the seeder to create sample pages.

Quick Actions
Run Seeder
Create sample custom pages
php artisan db:seed --class=CustomPagesSeeder
Menu Management
Link pages to menus
Documentation
View system docs
Check project root
@endsection