@inject('SectionService', 'App\Services\SectionService')
@php
$param = 'services';
$technologyData = $SectionService->get($param);
@endphp
@if (isset($technologyData['serviceClasses']) && count($technologyData['serviceClasses']) > 0)
@foreach ($technologyData['serviceClasses'] as $tech)
@php
$tech['id'] = 'nav-' . $tech['id'];
@endphp
{{ $tech['name'] ?? 'Default Name' }}
@endforeach
@else
No technology classes available.
@endif