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/ |
<?php $__env->startSection('content'); ?>
<p><b>Hello <?php echo e(ucfirst($user->profile->first_name)); ?></b>,</p>
<p>Your booking has been updated. Please find below the booking details.</p>
<?php
$info = json_decode($order->orderInfo,true);
?>
<div style="margin-top:10px;">
<b>Order details:</b>
<br>
Booking #: <?php echo e($order->id); ?>
<br>
Booking Date & Time: <b style="color:#dc0000;"><i><?php echo e($order->date_to_human); ?>, at <?php echo e($order->hour_to_human); ?></i></b>
<br>
<?php if($info['has_voucher']): ?>
Voucher campaign: <?php echo e($info['voucher']['name']); ?>
<br>
Code used: <?php echo e($info['voucher']['code']); ?>
<br>
<?php endif; ?>
<!-- Payment: <?php echo e(isset($order->card_trans_id) ? 'with card' : 'with cash'); ?> -->
Payment:
<br>
Total: £<?php echo e($order->amount); ?>
</div>
<div style="margin-top:10px;">
<b>Booking details:</b>
<br>
Service: <?php echo e($order->massage_type); ?>
<br>
Duration: <?php echo e($order->duration); ?>
<br>
Equipment:
<?php if($info['has_table']): ?>
<?php echo e(trans('general.text_yes')); ?>
<?php else: ?>
<?php echo e(trans('general.text_no')); ?>
<?php endif; ?>
<br>
Travel supplements:
<?php if($info['has_transport']): ?>
<?php echo e(trans('general.text_yes')); ?>, £<?php echo e($info['transport_cost']); ?>
<?php else: ?>
<?php echo e(trans('general.text_no')); ?>
<?php endif; ?>
</div>
<div style="margin-top:10px;">
<b>Service Provider Information</b>
<br>
<?php foreach($order->therapists as $therapist): ?>
<div>Name: <?php echo e($therapist->name); ?></div>
<?php endforeach; ?>
</div>
<div style="margin-top:10px;">
<b>Booking location</b>
<br>
Address: <?php echo e($order->address); ?>
<br>
Location: <?php echo e($order->location); ?>
<br>
County: <?php echo e($info['county']); ?>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('frontend.layouts.email', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>