File: D:/HostingSpaces/SBogers10/farmfun.komma.pro/resources/views/site/organisms/otherPosters.blade.php
<div class="o-other-posters @modifiers('o-other-posters')">
<div class="o-other-posters__main">
@if(!empty($otherPostersTitle))<h3 class="o-other-posters__title">{{ $otherPostersTitle }}</h3>@endif
<ul class="o-other-posters__list">
@foreach($postals as $poster)
<li class="o-other-posters__item">
@include('site.components.poster')
</li>
@endforeach
</ul>
</div>
@if(!(isset($otherPostersHideButton) && $otherPostersHideButton))
<div class="o-other-posters__button">
@include('site.components.button', [
'buttonLink' => $links->products->route,
'buttonText' => __('site/global.show_assortment')
])
</div>
@endif
</div>