관리-도구
편집 파일: 806d881b62469e31d2bd5fcd8fb8877fee782aa1.php
<?php $__env->startSection('content'); ?> <!-- Breadcrumbs --> <div class="breadcrumbs"> <div class="container"> <div class="row"> <div class="col-12"> <div class="bread-inner"> <ul class="bread-list"> <li><a href="<?php echo e(url('')); ?>"><?php echo e(_lang('Home')); ?><i class="ti-arrow-right"></i></a></li> <li class="active"><a href=""><?php echo e(_lang('My Downloads')); ?></a></li> </ul> </div> </div> </div> </div> </div> <!-- End Breadcrumbs --> <!-- Login Screen --> <section id="auth"> <div class="container"> <div class="row"> <div class="col-lg-3 col-md-4"> <div class="customer_dashboard"> <?php echo $__env->make('theme.default.customer.my_account.menu', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> </div> </div> <div class="col-lg-9 col-md-8"> <div class="dashboard_content"> <div class="card"> <div class="card-header"> <h4><?php echo e(_lang('My Downloads')); ?></h4> </div> <div class="card-body"> <div class="table-responsive"> <table class="table table-bordered"> <thead> <th><?php echo e(_lang('Order ID')); ?></th> <th><?php echo e(_lang('Date')); ?></th> <th><?php echo e(_lang('Product')); ?></th> <th class="text-center"><?php echo e(_lang('Action')); ?></th> </thead> <tbody> <?php if($downloads->count() == 0): ?> <tr> <td colspan="4" class="text-center"><?php echo e(_lang('No downloadable product found !')); ?></td> </tr> <?php endif; ?> <?php $__currentLoopData = $downloads; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $order_product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($order_product->order->id); ?></td> <td><?php echo e($order_product->order->created_at); ?></td> <td><?php echo e($order_product->product->translation->name); ?></td> <td class="text-center"> <a href="<?php echo e(url('download_product/'.encrypt($order_product->id))); ?>" class="btn-link"><?php echo e(_lang('Download')); ?></a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> </section> <!--/ End Login Screen --> <?php $__env->stopSection(); ?> <?php echo $__env->make('theme.saintsaccessories.websiteEcom', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/customdevdevopdi/findjobs.customdev.devopdigital.com/resources/views/theme/saintsaccessories/customer/my_account/downloads.blade.php ENDPATH**/ ?>