@extends('admin.layouts.app') @section('title', 'Page Content') @section('page-title', 'Manage Page Content') @section('content')

Page Content

Manage content for different pages (home, about, contact, etc.)

Add New Page
@forelse($pageContents as $page) @empty @endforelse
Section Title (EN) Title (KM) Created By Updated Actions
{{ ucfirst($page->section) }} {{ Str::limit($page->title_en, 40, '...') ?? '—' }} {{ Str::limit($page->title_km, 40, '...') ?? '—' }} {{ $page->createdBy?->name ?? 'System' }} {{ $page->updated_at->format('M d, Y') }}
@csrf @method('DELETE')

No page content found. Create one now

@if(session('success'))
{{ session('success') }}
@endif @endsection