JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "3d6f285a4086b3bf3e967a053082120c.php"
Full Path: /home/ambitio2/public_html/storage/framework/views/3d6f285a4086b3bf3e967a053082120c.php
File size: 3.33 KB
MIME-type: text/x-php
Charset: utf-8
<?php if($my_bookings->count() > 0): ?>
<div class="table-responsive">
<table class="table eTable">
<thead>
<tr>
<th><?php echo e(get_phrase('Subject')); ?></th>
<th><?php echo e(get_phrase('Tutor')); ?></th>
<th><?php echo e(get_phrase('Time')); ?></th>
<th><?php echo e(get_phrase('Amount')); ?></th>
<th><?php echo e(get_phrase('Payment Method')); ?></th>
<th><?php echo e(get_phrase('Link')); ?></th>
<th><?php echo e(get_phrase('Invoice')); ?></th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $my_bookings; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $my_booking): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td><?php echo e($my_booking->booking_to_schedule->schedule_to_tutorSubjects->name); ?></td>
<td><?php echo e($my_booking->booking_to_tutor->name); ?></td>
<td><?php echo e(date('h:i a', $my_booking->start_time) . ' - ' . date('h:i a', $my_booking->end_time)); ?></td>
<td><?php echo e(currency($my_booking->booking_to_schedule->schedule_to_tutorCanteach->price)); ?></td>
<td><?php echo e(get_phrase('Stripe')); ?></td>
<td>
<a href="<?php echo e(tution_started($my_booking->id) ? route('tution_class.join', slugify($my_booking->id)) : 'javascript:void(0);'); ?>"
class="d-flex align-items-center justify-content-center btn btn-primary text-18 text-white py-3" data-bs-toggle="tooltip" data-bs-title="<?php echo e(get_phrase('Join Now')); ?>">
<i class="fa fa-video d-inline-flex"></i>
</a>
</td>
<td>
<a href="<?php echo e(route('booking_invoice', $my_booking->id)); ?>"
class="d-flex align-items-center justify-content-center btn btn-primary text-18 text-white py-3" data-bs-toggle="tooltip" data-bs-title="<?php echo e(get_phrase('Print Invoice')); ?>">
<i class="fi fi-rr-print d-inline-flex"></i>
</a>
</td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
<?php else: ?>
<div class="row bg-white radius-10 mx-2">
<div class="com-md-12">
<?php echo $__env->make('frontend.default.empty', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
</div>
<?php endif; ?>
<!-- Pagination -->
<?php if(count($my_bookings) > 0): ?>
<div class="entry-pagination">
<nav aria-label="Page navigation example">
<?php echo e($my_bookings->appends(['tab' => 'live-upcoming'])->links()); ?>
</nav>
</div>
<?php endif; ?>
<!-- Pagination --><?php /**PATH /home/ambitio2/public_html/resources/views/frontend/default/student/my_bookings/live_and_upcoming.blade.php ENDPATH**/ ?>