Edit File: e3a2dabee82de8c8290add524e04862b0ecd7d7e.php
<div class="card store"> <div class="card-body"> <div class="position-relative"> <table class="table " id="tab"> <thead> <tr> <th><?php echo e(__('admin.date')); ?></th> <th><?php echo e(__('admin.amount')); ?></th> <th><?php echo e(__('admin.type')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $transactions; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $transaction): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr class=""> <td><?php echo e(\Carbon\Carbon::parse($transaction->created_at)->format('d/m/Y')); ?></td> <td class="text-success"><?php echo e($transaction->amount); ?> <span> <?php echo e(__('site.currency')); ?></span></td> <td><?php echo e($transaction->type_text); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> <?php if($transactions->count() == 0): ?> <div class="d-flex flex-column w-100 align-center mt-4"> <img src="<?php echo e(asset('admin/app-assets/images/pages/404.png')); ?>" alt=""> <span class="mt-2" style="font-family: cairo"><?php echo e(__('admin.there_are_no_matches_matching')); ?></span> </div> <?php endif; ?> </div> <?php if($transactions->count() > 0 && $transactions instanceof \Illuminate\Pagination\AbstractPaginator ): ?> <div class="d-flex justify-content-center mt-3"> <?php echo e($transactions->links()); ?> </div> <?php endif; ?> </div> </div><?php /**PATH /home/thunderw/public_html/resources/views/admin/delegates/parts/transactions.blade.php ENDPATH**/ ?>
Back to File Manager