@extends('admin.layouts.app') @section('title', 'Content Sections') @section('content')

Content Sections

Add New Section
@if($contentSections->count() > 0)
@foreach($contentSections as $section) @endforeach
Section Key Title Content Preview Status Sort Order Image Last Updated Actions
{{ $section->section_key }} {{ Str::limit($section->title, 30) }} {{ Str::limit(strip_tags($section->content), 50) }} @if($section->is_active) Active @else Inactive @endif {{ $section->sort_order }} @if($section->image_path) @else @endif {{ $section->updated_at->format('M d, Y') }}
@csrf @method('DELETE')
@if($contentSections->hasPages())
{{ $contentSections->links() }}
@endif @else

No Content Sections Found

Start by creating your first content section to manage your website content.

Create First Section
@endif
@endsection