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/framework/views/ |
<div class="row">
<?php if(isset($results['available']) && count($results['available']) > 0): ?>
<?php foreach($results['available'] as $therapist): ?>
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
<div class="<?php if(in_array($therapist->id,$selected)): ?> therapist-bg <?php else: ?> therapist-bg <?php endif; ?>" >
<!-- <div class="info-icon">
<button class="info-button see-therapist-info" therapist="<?php echo e($therapist->id); ?>" availability="1" ><img src="<?php echo e(asset('themes/frontend_new/assets/img/info.png')); ?>"/></button>
</div> -->
<div><img class="img-responsive see-therapist-info" therapist="<?php echo e($therapist->id); ?>" availability="1" src="<?php echo e($therapist->avatarUrl); ?>"/></div>
<div class="therapist-name">
<?php echo e($therapist->profile->first_name); ?>
<button class="info-button see-therapist-info" therapist="<?php echo e($therapist->id); ?>" availability="1" ><img src="<?php echo e(asset('themes/frontend_new/assets/img/info.png')); ?>"/></button>
<input type="hidden" id="has_message_table_<?php echo e($therapist->id); ?>" name="has_message_table_<?php echo e($therapist->id); ?>" value="<?php echo e($therapist->has_massage_table); ?>">
<!-- <?php if($therapist->has_massage_table): ?>
<a href="" class="badge-massage-table-tooltip" data-toggle="tooltip" data-placement="top" title="<?php echo e(trans('users::therapists.massage_table_included')); ?>">
<span class="badge-massage-table">
<img class="img-badge-massage-table" src="<?php echo e(asset('/themes/frontend_new/assets/img/icon-massage-table.JPG')); ?>"/>
<?php /*<i class="fa fa-bed"></i>*/ ?>
</span>
</a>
<?php endif; ?> -->
</div>
<div class="btn-book"><a href="#" therapist="<?php echo e($therapist->id); ?>" class="book-therapist-now">Add to basket</a></div>
</div>
</div>
<?php endforeach; ?>
<?php endif; ?>
<?php if(isset($results['unavailable']) && count($results['unavailable']) > 0): ?>
<?php foreach($results['unavailable'] as $therapist): ?>
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4">
<div class="<?php if(in_array($therapist->id,$selected)): ?> therapist-bg <?php else: ?> therapist-bg <?php endif; ?>" therapist="<?php echo e($therapist->id); ?>">
<!-- <div class="info-icon">
<button class="info-button see-therapist-info" therapist="<?php echo e($therapist->id); ?>" availability="0" ><img src="<?php echo e(asset('themes/frontend_new/assets/img/info.png')); ?>"/></button>
</div> -->
<div><img class="img-responsive see-therapist-info" src="<?php echo e($therapist->avatarUrl); ?>" therapist="<?php echo e($therapist->id); ?>" availability="0"/></div>
<div class="therapist-name">
<?php echo e($therapist->profile->first_name); ?>
<button class="info-button see-therapist-info" therapist="<?php echo e($therapist->id); ?>" availability="0" ><img src="<?php echo e(asset('themes/frontend_new/assets/img/info.png')); ?>"/></button>
<!-- <?php if($therapist->has_massage_table): ?>
<a href="" class="badge-massage-table-tooltip" data-toggle="tooltip" data-placement="top" title="<?php echo e(trans('users::therapists.massage_table_included')); ?>">
<span class="badge-massage-table">
<img class="img-badge-massage-table" src="<?php echo e(asset('/themes/frontend_new/assets/img/icon-massage-table.JPG')); ?>"/>
</span>
</a>
<?php endif; ?> -->
</div>
<div class="btn-book"><a href="#" class="see-availablility" therapist="<?php echo e($therapist->id); ?>" availability="0" >SEE AVAILABLITY</a></div>
</div>
</div>
<?php endforeach; ?>
<?php endif; ?>
<?php if(!isset($results['unavailable']) && !isset($results['available'])): ?>
<!-- <div class="active-button-massage">Oops!<br>This is not ideal.<br> We currently have 0 availability,<br> please amend your booking selection</div> -->
<?php endif; ?>
<div class="clearfix"></div>
</div>