@extends('layouts.app') @section('content')

Page Manager

Add New Page
@csrf

{{ $stats['total_pages'] }}

Total Pages

{{ $stats['active_pages'] }}

Active Pages

{{ $stats['public_pages'] }}

Public Pages

{{ $stats['admin_pages'] }}

Admin Pages

Clear
@forelse($pages as $page) @empty @endforelse
Title Route Name URL Pattern Access Level Status SSL Actions
{{ $page->title }} @if($page->description)
{{ Str::limit($page->description, 50) }} @endif
{{ $page->route_name }} {{ $page->url_pattern }} {{ ucfirst($page->access_level) }} @if($page->allowed_roles && count($page->allowed_roles) > 0)
+{{ implode(', ', $page->allowed_roles) }} @endif
@if($page->is_active) Active @else Inactive @endif @if($page->require_ssl) @else @endif
@csrf @method('PATCH')
@csrf @method('DELETE')
No pages found.
@csrf
Showing {{ $pages->firstItem() ?: 0 }} to {{ $pages->lastItem() ?: 0 }} of {{ $pages->total() }} results
{{ $pages->withQueryString()->links() }}
@endsection