File: D:/HostingSpaces/SBogers10/rentman.komma.pro/app/storage/views/f4ef747af646a745447670accc98f3d0
<div class="customer-logos-slider-row" id="customerLogoSlider">
<div class="content-container">
<div id="customerLogoSliderNavigation" class="navigation">
<span class="nav-button previous"></span>
<span class="nav-button next"></span>
</div>
<?php $customerLogoCounter = 0; ?>
<?php foreach($customerLogos as $customerLogo): ?>
<a target="_blank" rel="nofollow"
<?php if(isset($customerLogo->url) && $customerLogo->url != ''): ?> href="<?php echo $customerLogo->url; ?>"
<?php endif; ?> class="logo" data-slide-id="<?php echo $customerLogoCounter; ?>"
style="background-image: url('<?php if(isset($customerLogo->images->first()->medium_image_url) && $customerLogo->images->first()->medium_image_url != ''): ?><?php echo $customerLogo->images->first()->medium_image_url; ?><?php else: ?><?php echo $customerLogo->images->first()->original_image_url; ?><?php endif; ?>');">
</a>
<?php $customerLogoCounter++; ?>
<?php endforeach; ?>
</div>
</div>