@php $companies = config('gerg.companies', []); @endphp
{{-- Sidebar / tab list --}}

Select segment

{{-- Content panels --}}
@foreach ($companies as $index => $company) @php $imagePath = $company['image'] ?? null; $hasImage = $imagePath && file_exists(public_path($imagePath)); $body = $company['service_description'] ?? $company['description']; @endphp
@if ($hasImage)
{{ $company['name'] }}
@endif

What we provide

{{ $company['name'] }}

{{ $company['tagline'] }}

{{ $body }}

@endforeach