![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/storage/framework/views/ |
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous"> <?php echo Theme::css('plugins/font-awesome/css/font-awesome.min.css'); ?> <title><?php echo app('translator')->get('RentPix::module.inspection.title_singular'); ?> [<?php echo e($inspection->code); ?>]</title> <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>"> <?php echo Theme::css('plugins/sweetalert2/dist/sweetalert2.css'); ?> <?php echo Theme::css('plugins/toastr/toastr.min.css'); ?> <?php echo Theme::css('plugins/select2/dist/css/select2.min.css'); ?> <link rel="shortcut icon" href="<?php echo e(\Settings::get('site_favicon')); ?>" type="image/png"> <!-- sweetalert2 --> <?php echo \Html::style('assets/corals/plugins/lightbox2/css/lightbox.min.css'); ?> <?php echo \Html::style('assets/themes/rentpix/css/custom.css'); ?> <?php echo \Html::style('https://cdn.plyr.io/3.7.3/plyr.css'); ?> <style> html { font-size: 14px; } .details-table th { width: 150px; } @page { size: auto } .no-break { page-break-inside: avoid; } </style> </head> <body> <div class="container-fluid"> <div class="d-flex align-items-center justify-content-between bg-dark p-2 mb-2" style="color: #FFF"> <a href="<?php echo e(url('/')); ?>"> <img class="site_logo img-responsive" style="width: 150px; margin: 0 auto;" src="<?php echo e(\Settings::get('site_logo')); ?>"> </a> <h5 class="d-inline-block m-0"><?php echo app('translator')->get('RentPix::module.inspection.title_singular'); ?> [ <span class="font-weight-bold"><?php echo $inspection->present('code_without_link'); ?></span> ]</h5> <ul class="list-inline m-0"> <li class="list-inline-item"> <small><?php echo app('translator')->get('RentPix::attributes.inspection.type'); ?>:</small> <?php echo $inspection->present('type'); ?> </li> <li class="list-inline-item"> <small><?php echo app('translator')->get('Corals::attributes.status'); ?> :</small> <?php echo $inspection->present('status'); ?> </li> <li class="list-inline-item"> <small><?php echo app('translator')->get('RentPix::attributes.inspection.inspected_at'); ?>:</small> <b><?php echo $inspection->present('inspected_at'); ?></b> </li> </ul> </div> <?php ( $reservation = $inspection->reservation); ?> <?php ( $unit = $reservation->unit); ?> <div class="row"> <div class="col-lg-3 col-sm-12"> <div> <h5 class="section-title"> <?php echo app('translator')->get('RentPix::module.reservation.title_singular'); ?> [ <span class="font-weight-bold"><?php echo $reservation->present('code_without_link'); ?></span> ] <?php echo $reservation->present('type'); ?> <?php echo $reservation->present('rental_status'); ?> </h5> <table class="table table-striped table-sm details-table"> <tbody> <tr> <th><?php echo app('translator')->get('RentPix::attributes.reservation.starts_at'); ?></th> <td><?php echo $reservation->present('starts_at'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.reservation.ends_at'); ?></th> <td><?php echo $reservation->present('ends_at'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.reservation.start_location'); ?></th> <td><?php echo e($reservation->start_location['name']); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.reservation.end_location'); ?></th> <td><?php echo e($reservation->end_location['name']); ?></td> </tr> </tbody> </table> </div> <div> <h5 class="section-title"> <?php echo app('translator')->get('RentPix::module.unit.title_singular'); ?> [ <span class="font-weight-bold"><?php echo $unit->present('code_without_link'); ?></span> ] <?php echo $unit->present('status'); ?> </h5> <table class="table table-striped table-sm details-table"> <tbody> <tr> <th><?php echo app('translator')->get('RentPix::attributes.unit.vin'); ?></th> <td><?php echo $unit->present('vin'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.unit.license'); ?></th> <td><?php echo $unit->present('license'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.unit.engine'); ?></th> <td><?php echo $unit->present('engine'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.unit.make'); ?></th> <td><?php echo $unit->present('make'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.unit.model'); ?></th> <td><?php echo $unit->present('model'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.unit.model_year'); ?></th> <td><?php echo $unit->present('model_year'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.unit.rate_code'); ?></th> <td><?php echo $unit->present('rate_code'); ?></td> </tr> <?php if($unit->last_inspection_at): ?> <tr> <th><?php echo app('translator')->get('RentPix::attributes.unit.last_inspection'); ?></th> <td><?php echo $unit->present('last_inspection_at'); ?></td> </tr> <?php endif; ?> </tbody> </table> </div> <?php if($customer = $reservation->customer): ?> <div> <h5 class="section-title"><?php echo app('translator')->get('RentPix::module.customer.title_singular'); ?> <?php if($customer->type == 'personal'): ?> [ <span class="font-weight-bold"><?php echo $customer->present('full_name'); ?></span> ] <?php elseif($customer->type == 'corporate'): ?> <td class="font-weight-bold"><?php echo $customer->present('name'); ?></td> <?php endif; ?> <?php echo $customer->present('type'); ?></h5> <table class="table table-striped table-sm details-table"> <tbody> <tr> <th><?php echo app('translator')->get('RentPix::attributes.customer.phone'); ?></th> <td><?php echo $customer->present('phone'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.customer.email'); ?></th> <td><?php echo $customer->present('email'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.customer.alt_email'); ?></th> <td><?php echo $customer->present('alt_email'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.customer.address'); ?></th> <td><?php echo $customer->present('address'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.customer.city'); ?></th> <td><?php echo $customer->present('city'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.customer.state'); ?></th> <td><?php echo $customer->present('state'); ?></td> </tr> <tr> <th><?php echo app('translator')->get('RentPix::attributes.customer.zip'); ?></th> <td><?php echo $customer->present('zip'); ?></td> </tr> </tbody> </table> </div> <?php endif; ?> <div> <h4>Notes</h4> <?php $__empty_1 = true; $__currentLoopData = $inspection->reservation->comments; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $comment): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?> <div class="mr-2 mb-2 border p-1"> <h5><?php echo e($comment->body); ?></h5> <small class="text-muted text-sm"><?php echo e(!empty($comment->properties['agent']) ? $comment->properties['agent'] : $comment->comment_author->full_name); ?> <?php echo e($comment->created_at->diffForHumans()); ?></small> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?> <div class="mr-2 mb-2 border p-1"> <?php echo app('translator')->get('Corals::labels.no_data_found'); ?> </div> <?php endif; ?> </div> </div> <div class="col-lg-9 col-sm-12"> <?php $__currentLoopData = $listOfValues; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $parent => $children): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <h3><?php echo e($parent); ?></h3> <hr/> <div class="d-flex flex-wrap"> <?php $__currentLoopData = $children; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $code => $label): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="mr-2 mb-4 border p-1"> <h6><?php echo e($label); ?></h6> <div class="d-flex flex-wrap no-break"> <?php $__empty_1 = true; $__currentLoopData = $inspection->media()->where('collection_name',$code)->get(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $media): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?> <div class="position-relative"> <div class="photo-section" data-src="<?php echo e(\URL::temporarySignedRoute('inspection-media',now()->addMinutes(60),['mediaId'=>$media->id,'view'=>'prompted-photo'])); ?>"> <i class="fa fa-spinner fa-spin"></i> </div> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('RentPix::inspection.update')): ?> <div class="position-absolute switch-media" style="top:7px;left: 7px;display:none;"> <button class="btn btn-secondary" data-media-id="<?php echo $media->id; ?>"> <i class="fa fa-cog" aria-hidden="true"></i> </button> </div> <?php endif; ?> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?> <h6 class="text-muted align-self-center">No media found.</h6> <?php endif; ?> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <h3>Drivers</h3> <hr/> <?php $__empty_1 = true; $__currentLoopData = $inspection->drivers; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $driver): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?> <?php ($driver_data = data_get(json_decode($driver->pivot->properties??"", true)??[],'driver_data')); ?> <?php ($driver->fill($driver_data)); ?> <div class="driver-section"> <h5 class="section-title"> <?php echo app('translator')->get('RentPix::module.driver.title_singular'); ?> [<span class="font-weight-bold"><?php echo $driver->presentStripTags('name'); ?> </span>] <?php if($driver->pivot->is_primary): ?> <span class="badge badge-info">Primary</span> <?php elseif(user() && user()->can('RentPix::inspection.update')): ?> <?php echo CoralsForm::link( url("rentpix/inspections/$inspection->hashed_id/set-as-primary/$driver->hashed_id"), "Set As Primary", [ 'class' => 'btn btn-primary btn-sm', 'data' =>[ 'action' => 'post', 'page_action' => 'site_reload', 'confirmation' => "You will set $driver->name as primary driver?", ], ]); ?> <?php endif; ?> </h5> <table class="table table-striped table-sm"> <tbody> <tr> <td> <strong><?php echo app('translator')->get('RentPix::attributes.driver.phone'); ?>:</strong> <?php echo $driver->present('phone'); ?> </td> <td> <strong><?php echo app('translator')->get('RentPix::attributes.driver.email'); ?>:</strong> <?php echo $driver->present('email'); ?> </td> <td> <strong><?php echo app('translator')->get('RentPix::attributes.driver.dob'); ?>:</strong> <?php echo $driver->present('dob'); ?> </td> </tr> <tr> <td> <strong><?php echo app('translator')->get('RentPix::attributes.driver.address'); ?>:</strong> <?php echo $driver->present('address'); ?> </td> <td> <strong><?php echo app('translator')->get('RentPix::attributes.driver.license'); ?>:</strong> <?php echo $driver->present('license'); ?> </td> <td> <strong><?php echo app('translator')->get('RentPix::attributes.driver.license_expiration_date'); ?>:</strong> <?php echo $driver->present('license_expiration_date'); ?> </td> </tr> </tbody> </table> <?php if($messages = data_get(json_decode($driver->pivot->properties??"", true)??[],'messages')): ?> <div class="row"> <div class="col-md-8"> <ul class="list-unstyled"> <?php $__currentLoopData = $messages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $message): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li> <span class="p-1 <?php echo e('bg-'. data_get($message, 'level', 'secondary')); ?>"> <?php echo e(data_get($message, 'text')); ?> </span> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </div> </div> <?php endif; ?> <div class="d-flex flex-wrap"> <?php $__currentLoopData = \ListOfValues::get('rentPix_driver_document_photos'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $code => $label): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="mr-2 mb-4 border p-1 no-break"> <h6><?php echo e($label); ?></h6> <div class="d-flex flex-wrap"> <?php $__empty_2 = true; $__currentLoopData = $inspection->media()->where('driver_id', $driver->id)->where('collection_name',$code)->get(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $media): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_2 = false; ?> <div class="photo-section" data-src="<?php echo e(\URL::temporarySignedRoute('inspection-media',now()->addMinutes(60),['mediaId'=>$media->id,'view'=>'driver-photo'])); ?>"> <i class="fa fa-spinner fa-spin"></i> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_2): ?> <h6 class="text-muted">No images found.</h6> <?php endif; ?> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> <hr/> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?> <div> <h4 class="text-muted">This inspection doesn't have drivers.</h4> </div> <?php endif; ?> </div> </div> </div> <?php echo $__env->make('partials.footer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </body> <!-- jQuery 3 --> <?php echo Theme::js('plugins/jquery/dist/jquery.min.js'); ?> <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-Fy6S3B9q64WdZWQUiU+q4/2Lc9npb8tCaSX9FK7E8HnRr0Jz8D6OP9dO5Vg3Q9ct" crossorigin="anonymous"></script> <!-- plyr js --> <script src="https://cdn.plyr.io/3.7.3/plyr.js"></script> <!-- corals js --> <?php echo \Html::script('assets/corals/plugins/lightbox2/js/lightbox.min.js'); ?> <?php echo Theme::js('plugins/sweetalert2/dist/sweetalert2.all.min.js'); ?> <?php echo Theme::js('plugins/toastr/toastr.min.js'); ?> <?php echo \Html::script('assets/corals/js/corals_functions.js'); ?> <?php echo \Html::script('assets/corals/js/corals_main.js'); ?> <?php echo Theme::js('plugins/select2/dist/js/select2.full.min.js'); ?> <script> $(document).ready(function () { const player = new Plyr(document.querySelector('.js-player')); $('.photo-section').each(function () { let el = $(this); let src = el.data('src'); el.load(src); }) }) </script> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('RentPix::inspection.update')): ?> <div class="modal fade" id="switchMediaModal"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">Switch Media</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <div class="mr-2 mb-4 p-1"> <h6 id="modalHeader"></h6> <div class="text-center"> <img id="modalImg" class="img-thumbnail lazy" alt="img"> </div> </div> <form action="<?php echo e(url('rentpix/inspections/switch-media-inspection')); ?>" method="post" id="switchMediaForm"> <?php echo csrf_field(); ?> <input type="hidden" id="mediaId" name="media_id"> <?php echo CoralsForm::select2("inspection_id", 'Target Inspection' , [], true, [], [ 'class'=>'select2-ajax', 'data'=>[ 'model'=> \Corals\Modules\RentPix\Models\Inspection::class, 'columns'=> json_encode(['code']), 'selected' => json_encode([]), ]]); ?> <div class="text-right mt-5"> <button type="submit" class="btn btn-info">Submit</button> <button type="button" class="btn btn-danger" data-dismiss="modal">Close</button> </div> </form> </div> </div> </div> </div> <?php echo $__env->make('Corals::corals_main', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <script> function themeConfirmation(title, text, type, confirm_btn, cancel_btn, callback, dismiss_callback) { swal({ title: title, text: text, type: type, showCancelButton: true, animation: true, // customClass: 'animated tada', confirmButtonColor: "#ff7014", confirmButtonText: confirm_btn, cancelButtonText: cancel_btn }).then( function () { if (typeof callback === "function") { // Call it, since we have confirmed it is callable callback(); } }, function (dismiss) { if (window.Ladda) { Ladda.stopAll(); } if (typeof dismiss_callback === "function") { // Call it, since we have confirmed it is callable dismiss_callback() } }); } function themeNotify(data) { if (undefined == data.level && undefined == data.message) { if (undefined != data.responseJSON) { data = data.responseJSON; } var level = 'error'; var message = data.message; var errors = data.errors; } else { var level = data.level; var message = data.message; } if (undefined != errors) { message += "<br>"; $.each(errors, function (key, val) { message += val + "<br>"; }); } if (undefined == level && undefined == message) { level = 'error'; message = 'Something went wrong!!'; } toastr[level](message); } $(document).ready(function () { $('.photo-section').hover(function () { $(this).next('.switch-media').show(); }, function () { $(this).next('.switch-media').hide(); }); $('.switch-media').hover(function () { $(this).show(); }, function () { $(this).hide(); }); $('.switch-media').on('click', function () { var mediaId = $(this).find('button').data('media-id'); $('#mediaId').val(mediaId); var url = $(this).prev(".photo-section").find("img").attr("src"); $('#modalImg').attr('src', url) var h6 = $(this).closest('.border').find('h6').text(); $('#modalHeader').text(h6) $('#switchMediaModal').modal('show'); }); $("#switchMediaForm").submit(function (e) { e.preventDefault(); let form = $(this); form.find('button').prop('disabled', true); $.ajax({ type: "POST", url: $(this).attr("action"), dataType: 'json', data: form.serialize(), success: function (response) { themeNotify(response); $('#switchMediaModal').modal('hide'); setTimeout(function () { window.location.reload(); }, 500); }, error: function (response, textStatus, errorThrown) { form.find('button').prop('disabled', false); themeNotify(response); } }); }); }); </script> <?php else: ?> <script> function initSelect2ajax() { } </script> <?php endif; ?> </html> <?php /**PATH /home/corals/rentpix.corals.io/Corals/modules/RentPix/resources/views/inspections/details.blade.php ENDPATH**/ ?>