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 $__env->startSection('content'); ?>
<style>
@media only screen and (max-width:600px) {
table.mobile-columns td {
width: 100% !important;
display: block !important;
box-sizing: border-box;
}
}
</style>
<?php
$info = json_decode($order->orderInfo, true);
?>
<!-- HEADER -->
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<div style="margin-top:20px; border:1px solid #4ca17e;">
<div style="border-bottom:3px solid #4ca17e; font-size:20px; font-weight:bold; text-transform:uppercase; text-align:center; margin-bottom:10px; margin-top:10px; padding:0 40px 10px 40px;">
Hey, <?php echo e(ucfirst($user->name)); ?>
</div>
<div style="font-size:15px; text-align:left; line-height:21px; padding:0 10px 30px 10px;">
<p><strong>Your booking has been cancelled.</strong></p>
Details of your cancellation can be found below.
</div>
</div>
</td>
</tr>
</table>
<!-- ORDER DETAILS + BOOKING DETAILS -->
<table width="100%" cellpadding="10" cellspacing="0" border="0" class="mobile-columns" style="margin-top:15px;">
<tr>
<!-- ORDER DETAILS -->
<td width="50%" valign="top" style="border:1px solid #4ca17e;">
<div style="font-weight:bold; text-transform:uppercase; margin-bottom:6px; border-bottom:2px solid #4ca17e;">
Order Details
</div>
<div>
Booking #: <?php echo e($order->id); ?> <br>
Booking Date & Time: <?php echo e($order->date_to_human); ?>, at <?php echo e($order->hour_to_human); ?> <br>
<?php /* <?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; ?> */ ?>
Total: £<?php echo e($order->amount); ?>
</div>
</td>
<!-- BOOKING DETAILS -->
<td width="50%" valign="top" style="border:1px solid #4ca17e;">
<div style="font-weight:bold; text-transform:uppercase; margin-bottom:6px; border-bottom:2px solid #4ca17e;">
Booking Details
</div>
<div>
Service Type: <?php echo e($order->massage_type); ?> <br>
Duration: <?php echo e($order->duration); ?> <br>
Equipment:
<?php /* <?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 /* <?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>
</td>
</tr>
</table>
<!-- PROVIDER + LOCATION -->
<table width="100%" cellpadding="10" cellspacing="0" border="0" class="mobile-columns" style="margin-top:15px;">
<tr>
<!-- PROVIDER INFO -->
<td width="50%" valign="top" style="border:1px solid #4ca17e;">
<div style="font-weight:bold; text-transform:uppercase; margin-bottom:6px; border-bottom:2px solid #4ca17e;">
Service Provider Information
</div>
<div>
<?php foreach($order->therapists as $therapist): ?>
Service Provider: <?php echo e($therapist->name); ?> <br>
<?php endforeach; ?>
</div>
</td>
<!-- LOCATION -->
<td width="50%" valign="top" style="border:1px solid #4ca17e;">
<div style="font-weight:bold; text-transform:uppercase; margin-bottom:6px; border-bottom:2px solid #4ca17e;">
Booking Location
</div>
<div>
Address: <?php echo e($order->address); ?> <br>
Location: <?php echo e($order->location); ?> <br>
<?php /* County: <?php echo e($info['county']); ?> */ ?>
</div>
</td>
</tr>
</table>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('frontend.layouts.email', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>