@extends('admin.layouts.app') @section('title', 'About Page Management') @section('content')
@if(session('success')) @endif

{{ $sectionStats['total_sections'] }}

Total Sections

{{ $sectionStats['active_sections'] }}

Active Sections

{{ $sectionStats['inactive_sections'] }}

Inactive Sections

Last Updated

{{ $sectionStats['last_updated'] ? $sectionStats['last_updated']->format('M d, Y') : 'Never' }}

About Page Content Sections
Manage all content sections specific to the About page
@if($aboutSections->count() > 0)
@foreach($aboutSections as $section) @endforeach
Section Key Title Status Sort Order Last Updated Actions
{{ $section->section_key }} {{ $section->title }} @if($section->content)
{{ Str::limit(strip_tags($section->content), 50) }} @endif
@if($section->is_active) Active @else Inactive @endif {{ $section->sort_order ?? 'N/A' }} {{ $section->updated_at->format('M d, Y H:i') }}
@else
No About sections found

About page content sections will appear here once they are created.

Create First Section
@endif
@endsection