@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' }}
@foreach ($tech['services'] as $technologie)
{{$technologie['icon'] ?? 'eco' }} {{$technologie['title'] ?? 'Default Name' }}
{{$technologie['text'] ?? 'No description available.' }}
Submmit RFP
@endforeach
@endforeach
@endif