Een greep uit onze verhuurvloot

@foreach($campers as $camper) @php $isDiscount = 0; if ($camper->discounts != null){ $d = $camper->discounts; if((isset($d['lastMin1']) && $d['lastMin1'] > 0) || (isset($d['lastMin2']) && $d['lastMin2'] > 0) || (isset($d['week1']) && $d['week1'] > 0) || (isset($d['week2']) && $d['week2'] > 0) || (isset($d['week3']) && $d['week3'] > 0) || (isset($d['week4']) && $d['week4'] > 0)){ $isDiscount = 1; } } @endphp
@include('partials.camper', [ 'image' => $camper->getFirstMediaUrl('camper', 'thumb-overview'), 'persons' => $camper->sleeping_number, 'url' => $camper->url, 'transmission' => ucfirst($camper->transmission), 'title' => strip_tags(str_limit($camper->title, 57)), 'location' => $camper->location['city'], 'price' => formatPrice($camper->cheapestAvailablePeriodDayPrice()), 'isDiscount' => $isDiscount ])
@endforeach