⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
public_html
/
storage
/
framework
/
views
/
View File Name :
16c5a3e9be1f0c26ea690d8da322ea2d55460b41.php
<?php if(Session::has('admin_lang')): ?> <?php $admin_lang = Session::get('admin_lang'); $cd = str_replace('admin_', '', $admin_lang); $default = \App\Models\Language::where('code', $cd)->first(); ?> <?php else: ?> <?php $default = \App\Models\Language::where('is_default', 1)->first(); ?> <?php endif; ?> <?php $selLang = \App\Models\Language::where('code', request()->input('language'))->first(); ?> <?php if(!empty($selLang) && $selLang->rtl == 1): ?> <?php $__env->startSection('styles'); ?> <style> form:not(.modal-form) input, form:not(.modal-form) textarea, form:not(.modal-form) select, select[name='language'] { direction: rtl; } form:not(.modal-form) .note-editor.note-frame .note-editing-area .note-editable { direction: rtl; text-align: right; } </style> <?php $__env->stopSection(); ?> <?php endif; ?> <?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e(__('Page Lists')); ?></h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('admin.dashboard') . '?language=' . $default->code); ?>"> <i class="flaticon-home"></i> </a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Pages')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e(__('Page Lists')); ?></a> </li> </ul> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="row"> <div class="col-lg-4"> <div class="card-title d-inline-block"><?php echo e(__('Page Lists')); ?></div> </div> <div class="col-lg-3"> </div> <div class="col-lg-4 offset-lg-1 mt-2 mt-lg-0"> <a href="<?php echo e(route('admin.page.create') . '?language=' . $default->code); ?>" class="btn btn-primary float-lg-right float-left btn-sm"><i class="fas fa-plus"></i><?php echo e(__('Add Page')); ?> </a> <button class="btn btn-danger float-right btn-sm mr-2 d-none bulk-delete" data-href="<?php echo e(route('admin.page.bulk.delete') . '?language=' . $default->code); ?>"><i class="flaticon-interface-5"></i> <?php echo e(__('Delete')); ?></button> </div> </div> </div> <div class="card-body"> <div class="row"> <div class="col-lg-12"> <?php if(count($apages) == 0): ?> <h2 class="text-center"><?php echo e(__('NO PAGE ADDED')); ?></h2> <?php else: ?> <div class="table-responsive"> <table class="table table-striped mt-3" id="basic-datatables"> <thead> <tr> <th scope="col"> <input type="checkbox" class="bulk-check" data-val="all"> </th> <th scope="col"><?php echo e(__('Name')); ?></th> <th scope="col"><?php echo e(__('URL')); ?></th> <th scope="col"><?php echo e(__('Title')); ?></th> <th scope="col"><?php echo e(__('Status')); ?></th> <th scope="col"><?php echo e(__('Actions')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $apages; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $apage): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <input type="checkbox" class="bulk-check" data-val="<?php echo e($apage->id); ?>"> </td> <td><?php echo e($apage->name); ?></td> <td width="20%"><a href="<?php echo e(route('front.dynamicPage', $apage->slug)); ?>" target="_blank"><?php echo e(route('front.dynamicPage', $apage->slug)); ?></a> </td> <td><?php echo e($apage->title); ?></td> <td> <?php if($apage->status == 1): ?> <span class="badge badge-success"><?php echo e(__('Active')); ?></span> <?php elseif($apage->status == 0): ?> <span class="badge badge-danger"><?php echo e(__('Deactive')); ?></span> <?php endif; ?> </td> <td> <a class="btn btn-secondary btn-sm" href="<?php echo e(route('admin.page.edit', $apage->id) . '?language=' . request()->input('language')); ?>"> <i class="fas fa-edit"></i> </a> <form class="d-inline-block deleteform" action="<?php echo e(route('admin.page.delete')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="pageid" value="<?php echo e($apage->id); ?>"> <button type="submit" class="btn btn-danger btn-sm deletebtn"> <i class="fas fa-trash"></i> </button> </form> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> </div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('admin.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/id/public_html/resources/views/admin/page/index.blade.php ENDPATH**/ ?>