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/components/cta/appButtons.blade.php
<div class="app-buttons">
    <a href="{{config('site.app_store_link')}}" target="_blank" rel="noopener noreferrer" class="app-buttons__link" aria-label="download Rentman app">
        <img src="/img/app_store.svg" alt="download for IOS" width="160" height="48">
    </a>
    <a href="{{config('site.google_play')}}" target="_blank" rel="noopener noreferrer" class="app-buttons__link" aria-label="download Rentman app">
        <img src="/img/google_play.svg" alt="download for Android" width="160" height="48">
    </a>
</div>

@if(isset($withCta) && $withCta)

    <hr class="app-buttons__hr">
    <span class="app-buttons__title">
        {{ $appButtonsCta ?? __('site/global.appInterest') }}
    </span>

    <div>
        @php

            if(empty($appButtonsLink) && isset($links->rentmanapp)) {
               $appButtonsLink =  '/'. $links->rentmanapp->route;
            }
        @endphp

        @include('site.components.textButtonLink', [
            'modifiers' => 'icon',
            'textButtonText' => __('site/global.readMore'),
            'textButtonLink' => $appButtonsLink,
            'textButtonTitle' => $links->rentmanapp->name ?? ''
        ])
    </div>
@endif