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/SBogers95/rentman.io/resources/views/site/organisms/textImage.blade.php
<div class="l-bisection  @if($resource->reversed) l-bisection--reversed @endif  {{ $textImageClass ?? '' }}">
    <div class="l-bisection__item">
        @include('site.components.image', ['images' => $resource->image, 'imageId' => (isset($loop) ? 'componentable-area-' . $loop->iteration.'-slider' : rand() . '-random-slider') ])
    </div>
    <div class="l-bisection__item  s-text">

        @if(!empty($resource->label))
            <p class="u-color-primary  u-ff-primary  u-fw-bold">{!! $resource->label !!}</p>
        @endif

        {!! !empty($resource->text) ? $resource->text : '' !!}

        @if(isset($resource->app_buttons) && $resource->app_buttons != '0')
            @include('site.components.cta.appButtons', [
                'withCta' => $resource->app_buttons == '2',
                'appButtonsCta' => $resource->button_label,
                'appButtonsLink' => $resource->button_link,
            ])

        @endif

        @if(isset($resource->app_buttons) && $resource->app_buttons != '2' && !empty($resource->button_label) || !empty($resource->button_link) && !empty($resource->button_label))
            @if(isset($resource->filled_button) && $resource->filled_button)
                <div style="margin-top: 2.5rem;">
                    <div class="s-buttongroup">
                        @include('site.components.buttonLink', [ 'modifiers' => 'filled', 'buttonText' => $resource->button_label, 'buttonLink' => $resource->button_link])
                        @if(!empty($component->button_2_link) && !empty($component->button_2_label))
                            @include('site.components.buttonLink', ['buttonText' => $component->button_2_label, 'buttonLink' => $component->button_2_link])
                        @endif
                    </div>
                </div>
            @elseif(isset($resource->filled_button))
                <div class="s-buttongroup">
                    @include('site.components.textButtonLink', [
                        'modifiers' => ['icon'],
                        'textButtonLink' => $resource->button_link,
                        'textButtonText' => $resource->button_label,
                    ])

                    @if(!empty($component->button_2_link) && !empty($component->button_2_label))
                        @include('site.components.buttonLink', [
                            'buttonLink' => $component->button_2_link,
                            'buttonText' => $component->button_2_label,
                        ])
                    @endif
                </div>
            @endif
        @endif

    </div>
</div>