@extends('admin.layouts.app') @section('title', 'Pages') @section('page-title', 'CMS Pages') @section('content')

All Pages

Create Page
@forelse($pages as $page) @empty @endforelse
Title Slug Status Updated Actions
{{ $page->title }} {{ $page->slug }} {{ $page->is_active ? 'Active' : 'Inactive' }} {{ $page->updated_at->format('M d, Y') }}
@csrf @method('DELETE')
No pages found
{{ $pages->links() }}
@endsection