Viewing file: 046755a0ac956f3d7372bfe5a5b55bbc.php (1.86 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(__('Latest News')); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('styleplugins'); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?> <div class="container top_section mb-5"> <div class="row"> <div class="col-12"> <div class="event-heraders text-center"> <div class="event-heraders-title"> <h1>Latest News</h1> </div> </div> <div class="row justify-content-center"> <?php if(isset($news_reports) && $news_reports): ?> <?php $__currentLoopData = $news_reports; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $news_report): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-lg-4 col-md-4 col-12"> <div class="news-section text-ecnter mt-2 mb-2"> <h1><?php echo e($news_report->title); ?></h1> <img src="<?php echo e(asset('assets/images/'.$news_report->img)); ?>" alt=""> <div class="des-section mt-4"> <?php echo e(Str::words($news_report->details, 20, '...')); ?> </div> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> </div> </div> </div> </div> <?php $__env->stopSection(); ?>
<?php $__env->startSection('jsplugins'); ?>
<?php $__env->stopSection(); ?> <?php echo $__env->make('master.front', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/game.picotech.app/public_html/core/resources/views/front/news.blade.php ENDPATH**/ ?>
|