Sh3ll
OdayForums


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/www/storage-old/framework/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/tradze/www/storage-old/framework/views/345863a4717c3937d8bb948e7b10d3af9cd8992d.php
<?php 
    $hoursArray = json_decode($hours, true); // Converted JSON string to associative array
    $availableHoursExist = false;
 ?>
<div class="row" id="timeline-therapist-hours">
    <?php foreach($hoursArray as $hour): ?>
        <?php if($hour['available']): ?>
            <?php 
                $availableHoursExist = true; 
                $roundedPrice = number_format(ceil($hour['price'] * 20) / 20, 2);
             ?>
            <?php /*hour*/ ?>
            <div class="col-xs-4 col-sm-2 col-md-2 col-lg-3">
                <div class="item_hour selecthour-therapist <?php if(!$hour['available']): ?> disable-hour <?php elseif($hour["hour"]==$selectedhour): ?> active-hour  <?php endif; ?>" hour-val="<?php echo e($hour['hour']); ?>" therapist="<?php echo e($selectedtherapist); ?>" date="<?php echo e($selectedtherapistdate); ?>">
                    <div class="hour"><?php echo e($hour['hour']); ?></div>
                    <div class="price-hour">£ <?php echo e($roundedPrice); ?></div>
                </div>
            </div>
        <?php endif; ?>
    <?php endforeach; ?>
</div>
<?php if(!$availableHoursExist): ?>
    <div class="active-button-massage" >
        Oops!<br>This is not ideal!<br>
        Unfortunately, the selected service provider is currently unavailable<br>
        Please change your selection<br>
        Or return to services.
    </div>
<?php endif; ?>


ZeroDay Forums Mini