@inject('SectionService', 'App\Services\SectionService') @php $param = 'products'; $technologyData = $SectionService->get($param); $techHead = $technologyData['techHead'] ?? []; $techPilars = $technologyData['techPilars'] ?? []; $techClasses = $technologyData['techClasses'] ?? []; @endphp

{{ $techHead['heading'] ?? 'Default Heading' }}

{{ $techHead['subheading'] ?? 'Default Subheading' }}

Access Console
@if (isset($techClasses) && count($techClasses) > 0) @foreach ($techClasses as $tech)
{{ $tech['name'] ?? 'Default Name' }} {{ $tech['version'] ?? 'v0.0.0' }}

{{ $tech['description'] ?? 'No description available.' }}

@endforeach @else

No technology classes available.

@endif
@foreach ($techPilars as $card)
{{ $card['icon'] ?? 'Default Icon' }}
{{ $card['title'] ?? 'Default Title' }}

{{ $card['text'] ?? 'Default Text' }}

{{ $card['button_text'] ?? '#' }}
@endforeach