Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/public_html/dev/storage/framework/views/ |
<?php if(count($hours)): ?>
<div class="owl-select-hour owl-theme owl-carousel owl-theme-int" id="timeline-hours">
<?php /*hour*/ ?>
<?php foreach($hours as $h): ?>
<?php if($h['available']): ?>
<div class="item selecthour <?php if(!$h['available']): ?> disable-hour <?php elseif($h["hour"]==$selectedhour): ?> active-hour <?php endif; ?>" hour-val="<?php echo e($h['hour']); ?>">
<div class="hour"><?php echo e($h['hour']); ?></div>
<div class="price-hour">From <br>£ <?php echo e(number_format(ceil($h['price'] * 20) / 20, 2)); ?></div>
</div>
<?php endif; ?>
<?php endforeach; ?>
</div>
<?php else: ?>
<div class="select-date" style="color:red;">Unfortunately there are currently no therapists available for your selected date & time.</div>
<?php endif; ?>