관리-도구
편집 파일: e6ef4e45ce0f2697c0d56763ed3b1aa958aaa9c0.php
<?php $__env->startSection('meta'); ?> <?php echo $__env->make('frontend.includes.meta', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <!-- Banner --> <section class="banner pt pb" style="background-image: url(<?php echo e(asset('frontend/img/banner.jpg')); ?>);"> <div class="container"> <?php if(count($news) >0 || count($albums) >0 || count($videos) >0 || count($members) >0 || count($downloads) >0): ?> <h1>Your Search Items</h1> <?php else: ?> <hr> <h3 class="text-center text-white bg-dark">No Data Found In Our Records</h3> <hr> <?php endif; ?> </div> </section> <!-- Banner End --> <!-- Gallery Page Us --> <section class="gallery-page mt mb"> <div class="container"> <div class="row"> <?php if(isset($news)): ?> <?php if(count($news) > 0): ?> <h3 class="text-center">Our News & Events</h3> <hr> <?php endif; ?> <?php $__currentLoopData = $news; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $new): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $slug = Str::slug($new->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($new->title['en']); ?>"> <img src="<?php echo e(Storage::disk('uploads')->url($new->cover_image)); ?>" alt="<?php echo e($new->title['en']); ?>"> <span><?php echo e(getLangValue($new->title)); ?></span> </a> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> </div> <div class="row"> <?php if(isset($albums)): ?> <?php if(count($albums) > 0): ?> <h3 class="text-center">Our Albums</h3> <hr> <?php endif; ?> <?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(Storage::disk('uploads')->url($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 class="row"> <?php if(isset($videos)): ?> <?php if(count($videos) > 0): ?> <h3 class="text-center">Our Videos</h3> <hr> <?php endif; ?> <?php $__currentLoopData = $videos; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $video): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-lg-3 col-md-4 col-sm-6"> <div class="album-wrap"> <iframe width="100%" height="190" src="https://www.youtube.com/embed/<?php echo e($video->embed_link); ?>" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen=""></iframe> <h4 style="color: grey;"><?php echo e(getLangValue($video->title)); ?></h4> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> </div> <div class="row"> <?php if(isset($members)): ?> <?php if(count($members) > 0): ?> <h3 class="text-center">Our Members</h3> <hr> <?php endif; ?> <?php $__currentLoopData = $members; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $member): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <?php $slug = Str::slug($member->name['en']); ?> <div class="col-lg-3 col-md-4 col-sm-6"> <div class="album-wrap"> <img src="<?php echo e(Storage::disk('uploads')->url($member->profile_photo)); ?>" alt="images"> <span class="text-center"><?php echo e(getLangValue($member->name)); ?></span> <p class="text-center">( <?php echo e(getLangValue($member->position)); ?> )</p> </div> </div> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> </div> <div class="row"> <?php if(isset($downloads)): ?> <?php if(count($downloads) > 0): ?> <h3 class="text-center">Downloadable File</h3> <hr> <?php endif; ?> <?php $__currentLoopData = $downloads; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $download): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <div class="col-lg-3 col-md-4 col-sm-6"> <div class="album-wrap"> <span class="text-center"><?php echo e($download->file_name); ?> <a href="" download="<?php echo e($download->file_location); ?>" class="btn btn-sm btn-success text-white"> <i class="fa fa-download"></i></a></span> </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/search.blade.php ENDPATH**/ ?>