@extends('layouts.app') @section('title', 'Our Companies — ' . config('gerg.name')) @section('content') @include('partials.page-hero', ['title' => 'Our Companies', 'subtitle' => 'Group companies synchronized to back each other in delivering solutions.', 'breadcrumb' => 'Companies'])
@php $companies = config('gerg.companies_page', []); $featured = false; @endphp
@foreach ($companies as $company) @php $imagePath = $company['image'] ?? null; $hasImage = $imagePath && file_exists(public_path($imagePath)); $isWide = $featured && $loop->first; @endphp @endforeach
@endsection