관리-도구
편집 파일: 047b81752ac9676a8078efc8233e396e39f47c24.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> <!--<h1> Public Cooperation </h1>--> <nav aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="index.html"><?php echo e(__('index.top.home')); ?></a></li> <li class="breadcrumb-item active" aria-current="page"> <?php echo e(getLangValue($data->name)); ?> </li> <!-- <li class="breadcrumb-item active" aria-current="page"> Public Cooperation </li>--> <!--</ol>--> </nav> </div> </section> <!-- Banner End --> <!-- Team Page Us --> <section class="team-next mt mb"> <div class="container"> <div class="table-responsive"> <table width="100%" class="table table-striped table-hover table-bordered"> <thead> <tr> <th width="50"><?php echo e(__('index.index.serial_number')); ?></th> <th width="400"><?php echo e(__('index.index.file_name')); ?></th> <th width="206"><?php echo e(__('index.index.download')); ?></th> </tr> </thead> <tbody> <?php if(count($downloads) == 0): ?> <tr> <td colspan="3"><h3><?php echo e(__('index.emptyInfo.noItem')); ?></h3></td> </tr> <?php else: ?> <?php $i = 1; ?> <?php $__currentLoopData = $downloads; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $download): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td width="50"><?php echo e($i); ?></td> <td width="400"><?php echo e($download->file_name); ?></td> <td width="206"> <a href="<?php echo e(asset(@$download->file_location)); ?>" class="btn btn-success" title="Download" target="_blank"><i class="fa fa-download"></i> Download </a></a> </td> </tr> <?php $i++; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> </tbody> </table> </div> <nav aria-label="Page navigation example"> <span class="pagination-sm m-0 float-right"><?php echo e($downloads->links()); ?></span> </nav> </div> </section> <!-- Team 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/downloads.blade.php ENDPATH**/ ?>