관리-도구
편집 파일: 1d9cb0206806ab2112bb8f9f071b78257ee11894.php
<?php $__env->startSection('meta'); ?> <?php echo $__env->make('frontend.includes.meta', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <!-- Banner --> <section class="banner pt pb" style="background-image: url(<?php echo e(asset(@$data->og_image)); ?>); background-position:center; background-size: cover;"> <div class="container"> <h1> <?php echo e(getLangValue($data->name)); ?> </h1> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="<?php echo e(route('index')); ?>"><?php echo e(__('index.top.home')); ?></a></li> <li class="breadcrumb-item active" aria-current="page"> <?php echo e(getLangValue($data->name)); ?> </li> </ol> </nav> </div> </section> <!-- Banner End --> <!-- Gallery Page Us --> <section class="gallery-page mt mb"> <div class="container"> <div class="row"> <?php if(count($albums) == 0): ?> <h3 class="text-center"><?php echo e(__('index.emptyInfo.noItem')); ?></h3> <?php else: ?> <?php $__currentLoopData = $albums; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $album): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $slug = Str::slug($album->album_title['en']); ?> <div class="col-lg-3 col-md-4 col-sm-6"> <div class="album-wrap"> <a href="<?php echo e(route('pageSlug', $slug)); ?>" title="<?php echo e($album->album_title['en']); ?>"> <img src="<?php echo e(asset(@$album->album_cover)); ?>" alt="<?php echo e($album->album_title['en']); ?>"> <span><?php echo e(getLangValue($album->album_title)); ?></span> <p> <?php $album_images_count = \App\Models\AlbumImages::where('album_id', $album->id)->count(); ?> <?php echo e($album_images_count); ?> <?php echo e(__('index.index.photo')); ?> </p> </a> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> </div> </div> </section> <!-- Gallery Page End --> <?php $__env->stopSection(); ?> <?php echo $__env->make('frontend.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home2/nepaldsdforg/public_html/resources/views/frontend/gallery.blade.php ENDPATH**/ ?>