@extends('layouts.app')
@section('title', 'Service Page')
@section('content')
{{-- Header Section --}}
@foreach ($services as $category)
@php
$firstSub = $category->subCategories->first();
$hasActiveService = $category->subCategories->flatMap->services->contains(fn($service) => $service->status === 'active');
@endphp
@if ($firstSub && $hasActiveService)
@endif
@endforeach
@endsection