@extends('admin.layouts.home') @section('title', 'Pages Management') @section('content')

Pages Management

Statistics Featured Pages
Total Pages
{{ $totalPages }}
Active Pages
{{ $activePages }}
Inactive Pages
{{ $inactivePages }}
Featured Pages
{{ $featuredPages }}
Filter Pages
Reset
@if(session('success'))
{{ session('success') }}
@endif @forelse($pages as $page)
{{ $page->page_title }}
@csrf @method('DELETE')
{{ $page->active ? 'Active' : 'Inactive' }}
@csrf
{{ $page->page_title }}

{{ Str::limit($page->description, 50) }}

@if($page->category) {{ $page->category->name }} @else Uncategorized @endif
{{ $page->created_at->format('M d, Y') }} {{ $page->is_featured ? 'Featured' : 'Unfeatured' }}
@empty
No pages found.
@endforelse
{{ $pages->links('pagination::bootstrap-5') }}
@endsection @section('scripts') @endsection