Server IP : 23.254.227.96 / Your IP : 216.73.216.46 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/viralblo/instantblog/storage/framework/views/ |
Upload File : |
<?php $__env->startSection('content'); ?> <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom"> <h1 class="h2"><?php echo app('translator')->get('admin.pages'); ?></h1> <div class="btn-toolbar mb-2 mb-md-0"> <a class="btn btn-success fw-bold" href="<?php echo e(url('/pages/create')); ?>" role="button"><?php echo app('translator')->get('admin.addnewpage'); ?></a> </div> </div> <div class="row box-white ms-3 me-3 shadow-sm"> <table class="table table-hover"> <thead> <tr> <th><?php echo app('translator')->get('admin.id'); ?></th> <th><?php echo app('translator')->get('admin.title'); ?></th> <th><?php echo app('translator')->get('admin.edit'); ?></th> <th><?php echo app('translator')->get('admin.delete'); ?></th> </tr> </thead> <tbody> <?php $__empty_1 = true; $__currentLoopData = $pages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $page): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?> <tr> <th scope="row"><?php echo e($page->id); ?></th> <td> <a href="<?php echo e(url('/page/' . $page->page_slug)); ?>"> <?php echo e(str_limit($page->page_title, 35)); ?> </a> </td> <td><a href="<?php echo e(url('/pages/' . $page->id . '/edit')); ?>"><?php echo app('translator')->get('admin.edit'); ?></a></td> <td><a class="color-delete" href="<?php echo e(url('/pages/' . $page->id)); ?>"><?php echo app('translator')->get('admin.delete'); ?></a></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?> <?php echo app('translator')->get('admin.nopagefound'); ?> <?php endif; ?> </tbody> </table> </div> <div class="row"> <div class="col-md-12"> <?php echo e($pages->links()); ?> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/viralblo/instantblog/resources/views/posts/pages.blade.php ENDPATH**/ ?>