@extends('admin.master') @section('content')

Home Services Management

Manage the homepage service section and service cards.

Add Service Section
@if (session('success'))
{{ session('success') }}
@endif

Service Sections

Total: {{ $serviceSections->total() }}
@if ($serviceSections->count())
@foreach ($serviceSections as $serviceSection) @endforeach
Section Content Cards Center Logo Status Updated Actions
{{ $serviceSection->title }} {{ $serviceSection->label ?: 'No section label' }} {{ $serviceSection->services_count }} Services {{ $serviceSection->center_logo ?: 'We' }} @if ($serviceSection->is_active) Active @else Inactive @endif {{ $serviceSection->updated_at->format( 'd M Y' ) }} {{ $serviceSection->updated_at->format( 'h:i A' ) }}
Edit
@csrf @method('DELETE')
@if ($serviceSections->hasPages())
{{ $serviceSections->links() }}
@endif @else

No Service Section Found

Add the homepage service section and cards.

Create Service Section
@endif
@endsection