File: D:/HostingSpaces/SBogers10/stafa.komma.pro/resources/views/site/organisms/locations.blade.php
<div class="o-hexagrid o-block">
<h2 class="o-hexagrid__title">@lang('site/about.locations.title')</h2>
<ul class="o-hexagrid__list">
@foreach($locations as $location)
<li class="o-hexagrid__item">
@include('site.components.location', [
'locationImage' => $location->images->first()->small_image_url ?? null,
'locationName' => $location->translation->name ?? null,
'locationAddress1' => $location->translation->address1 ?? null,
'locationAddress2' => $location->translation->address2 ?? null,
'locationAddress3' => $location->translation->address3 ?? null,
'locationCountry' => $location->translation->country ?? null,
])
</li>
@endforeach
</ul>
</div>