HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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>