@extends('layouts.admin-layout') @section('title', 'Home Page CMS') @section('content')

Home Page CMS

@if (session('success'))
{{ session('success') }}
@endif {{-- Quick Action Cards --}}
Page Content

Sliders, About, Lateral, Groups, Plans

Edit Content
Services

{{ $services->count() }} service(s)

Manage
Testimonials

{{ $testimonials->count() }} testimonial(s)

Manage
Preview Front

See live home page

View
{{-- Current Page Content Summary --}} @if ($content)

Current Page Content Summary

About Heading {{ $content->about_heading ?? '—' }}
Lateral Heading {{ $content->lateral_heading ?? '—' }}
Groups Heading {{ $content->groups_heading ?? '—' }}
Subscription Heading {{ $content->subscription_heading ?? '—' }}
Community Heading {{ $content->community_heading ?? '—' }}
Slider Count: {{ count($content->sliders ?? []) }}
Plans Count: {{ count($content->plans ?? []) }}
Group Boxes: {{ count($content->group_boxes ?? []) }}
@if ($content->getMedia('banner_image')->isNotEmpty()) Banner Image ✓ @else No Banner Image @endif @if ($content->getMedia('about_image')->isNotEmpty()) About Image ✓ @else No About Image @endif
@else
No content found!

Home page content has not been set up yet. Create Now

@endif
@endsection