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