Viewing file: 3c7210092b7a5a6be1d9a1444c3e830a.php (3.78 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(get_settings('app_name')); ?> - <?php echo e(trans('admin.features')); ?> <?php $__env->stopSection(); ?>
<?php $__env->startSection('header'); ?>
<div class="container"> <div class="page-banner"> <div class="row justify-content-center align-items-center h-100"> <div class="col-md-6"> <nav aria-label="Breadcrumb"> <ul class="breadcrumb justify-content-center py-0 bg-transparent"> <li class="breadcrumb-item"><a href="<?php echo e(route('home')); ?>"><?php echo e(trans('admin.home')); ?></a></li> <li class="breadcrumb-item active"><?php echo e(trans('admin.features')); ?></li> </ul> </nav> <h1 class="text-center"><?php echo e(trans('admin.features')); ?></h1> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('main-section'); ?> <?php $template = json_decode(get_settings('template')); ?> <div class="page-section"> <div class="page-section bg-light"> <div class="container"> <div class="text-center wow fadeInUp"> <div class="subhead"><?php echo e(trans('admin.features')); ?></div> <h2 class="title-section"><?php echo e(isset($template)?$template->main_title:''); ?></h2> <div class="divider mx-auto"></div> </div>
<div class="row"> <?php if(isset($template->sec_four_description) && isset($template->sec_four_title)): ?> <?php $__currentLoopData = $template->sec_four_description; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$secFourDescription): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $__currentLoopData = $template->sec_four_title; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $keyOne=>$secFourtitle): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php if($key == $keyOne && $secFourDescription && $secFourtitle): ?> <div class="col-sm-6 col-lg-4 col-xl-3 py-3 wow zoomIn"> <div class="features"> <div class="header mb-3"> <span class="mai-business"></span> </div> <h5><?php echo e($secFourtitle); ?></h5> <p><?php echo e($secFourDescription); ?></p> </div> </div> <?php endif; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> <div class="col-sm-12 text-center d-none"> <a href="<?php echo e(route('features')); ?>" class="btn btn-primary mt-3"><?php echo e(trans('admin.view_more')); ?></a> </div>
</div>
</div> <!-- .container --> </div> <!-- .page-section --> </div> <!-- .page-section -->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.frontLayout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/sms.picotech.app/public_html/resources/views/front/service.blade.php ENDPATH**/ ?>
|