@php $companies = config('gerg.companies', []); $featured = $featured ?? false; @endphp
@foreach ($companies as $company) @php $imagePath = $company['image'] ?? null; $hasImage = $imagePath && file_exists(public_path($imagePath)); $isWide = $featured && $loop->first; @endphp
@if ($hasImage) {{ $company['name'] }} @else
@include('partials.company-icon', ['icon' => $company['icon'], 'class' => 'h-12 w-12 text-gerg-500'])
@endif
{{ $company['short_name'] ?? $company['name'] }}

{{ $company['name'] }}

{{ $company['tagline'] }}

{{ $company['description'] }}

Explore services
@endforeach