@extends('admin.layouts.app')
@section('title', 'Pages')
@section('page-title', 'CMS Pages')
@section('content')
| Title |
Slug |
Status |
Updated |
Actions |
@forelse($pages as $page)
| {{ $page->title }} |
{{ $page->slug }} |
{{ $page->is_active ? 'Active' : 'Inactive' }}
|
{{ $page->updated_at->format('M d, Y') }} |
|
@empty
| No pages found |
@endforelse
{{ $pages->links() }}
@endsection