관리-도구
편집 파일: efcab020cd32ed3b29dbc4a3d4a3428b.php
<?php $__env->startSection('content'); ?> <main id="main"> <!-- <section> <div class="tf-container full"> <div class="row"> <div class="col-md-12"> <img src="./assets/images/page/breakcrumb2.jpg" alt="image"> </div> </div> </div> </section> --> <section class="breadcumb-section"> <div class="tf-container"> <div class="row"> <div class="col-lg-12 center z-index1"> <h1 class="title">Packages Details</h1> <ul class="breadcumb-list flex-five"> <li><a href="<?php echo e(route('index')); ?>">Home</a></li> <li><span>Tour Packages</span></li> </ul> <img class="bcrumb-ab" src="./assets/images/page/mask-bcrumb.png" alt=""> </div> </div> </div> </section> <section class="tour-single"> <div class="tf-container"> <div class="row"> <?php if($tours->isEmpty()): ?> <div class="col-lg-12 pt-5 pb-5"> <h2 class="title pt-5 pb-5">No Package Available</h2> </div> </div> <?php else: ?> <div class="row pd-main"> <div class="col-lg-12"> <div class="tab-content" id="pills-tabContent"> <div class="tab-pane fade show active" id="pills-information" role="tabpanel" aria-labelledby="pills-information-tab" tabindex="0"> <div class="row mb-50"> <div class="col-lg-12"> <div class="inner-heading-wrap flex-two"> <div class="inner-heading"> <span class="feature">Featured</span> <h2 class="title"><?php echo e($tours->first()->package->name); ?></h2> <h6><?php echo e($tours->first()->package->days); ?></h6> <p>This package name captures the essence of the journey, highlighting the diverse attractions across South India's iconic destinations. </p> </div> <div class="inner-price"> </div> </div> </div> </div> <div class="row"> <h3 class="title-plan mb-2">Tour Plan:</h3> <?php $__currentLoopData = $tours; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $plan): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-lg-12"> <div class="planing-content-tour"> <!-- Start of Day Section --> <div class="row mb-5"> <!-- Conditional class for alternating layout --> <div class="<?php echo e((int)$index % 2 == 0 ? 'col-lg-8 order-lg-1' : 'col-lg-8 order-lg-2'); ?>"> <div class="tour-planing-section flex"> <div class="number-box flex-five"><?php echo e(str_pad((int)$index + 1, 2, '0', STR_PAD_LEFT)); ?></div> <div class="content-box"> <h5 class="title"><?php echo e($plan->title); ?></h5> <p class="des"><?php echo e($plan->description); ?></p> </div> </div> </div> <!-- Image Section --> <div class="<?php echo e((int)$index % 2 == 0 ? 'col-lg-4 order-lg-2' : 'col-lg-4 order-lg-1'); ?>"> <div class="side-bar-right"> <div class="tf-widget-destination"> <img class="pk_image" style="height: 300px;" src="<?php echo e(asset('storage/'.$plan->image)); ?>" alt="<?php echo e($plan->title); ?>"> </div> </div> </div> </div> <!-- End of Day Section --> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </div> </div> </div> </div> </div> </div> </section> <?php endif; ?> <section class="mb--93"> <div class="tf-container"> <div class="callt-to-action flex-two z-index3 relative"> <div class="callt-to-action-content flex-three"> <div class="image"> <img src="<?php echo e(asset('./assets/images/page/ready.png')); ?>" alt="Image"> </div> <div class="content"> <h2 class="title-call">Ready to adventure and enjoy natural</h2> <!-- <p class="des">Lorem ipsum dolor sit amet, consectetur notted adipisicin</p> --> </div> </div> <img src="<?php echo e(asset('./assets/images/page/vector4.png')); ?>" alt="" class="shape-ab"> <div class="callt-to-action-button"> <a href="<?php echo e(route('contact')); ?>" class="get-call">Let,s get started</a> </div> </div> </div> </section> </main> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.apps', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\Users\91907\Desktop\ICT\BackEnd\Xpedition\Xpedition\resources\views/frontend/tour.blade.php ENDPATH**/ ?>