@extends('admin.layout') @section('title', 'Content Management') @section('content')
Content Management
Manage all website pages and content.
@if(session('success'))
{{ session('success') }}
@endif
Website Pages
{{ $pages->count() }} {{ $pages->count() === 1 ? 'page' : 'pages' }}
@forelse($pages as $page) @empty @endforelse
Page Title Slug Status Last Updated Actions
{{ $page->title }}
/page/{{ $page->slug }}
@if($page->is_active) Active @else Inactive @endif
{{ $page->updated_at->format('M d, Y') }}
{{ $page->updated_at->format('g:i A') }}
View Edit
No pages found
Create your first page to get started
@forelse($pages as $page)
{{ $page->title }}
/page/{{ $page->slug }}
@if($page->is_active) Active @else Inactive @endif
Last Updated
{{ $page->updated_at->format('M d, Y g:i A') }}
View Edit
@empty
No pages found
Create your first page to get started
@endforelse
@endsection