One Hat Cyber Team
Your IP :
10.30.1.1
Server IP :
103.148.201.5
Server :
Linux web-olt 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
Server Software :
Apache/2.4.52 (Ubuntu)
PHP Version :
8.1.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
Compro-ISP
/
storage
/
framework
/
views
/
Edit File:
91b673ca191860116b32120bc0f2ce99.php
<?php $__env->startSection('content'); ?> <div class="page-heading"> <div class="page-title"> <div class="row"> <div class="col-12 col-md-6 order-md-1 order-last"> <h3>Menu Hak Akses</h3> <p class="text-subtitle text-muted"></p> </div> <div class="col-12 col-md-6 order-md-2 order-first"> <nav aria-label="breadcrumb" class="breadcrumb-header float-start float-lg-end"> <ol class="breadcrumb"> <li class="breadcrumb-item active" aria-current="page">Hak Akses</li> </ol> </nav> </div> </div> </div> <section class="section"> <div class="card"> <div class="card-header"> <div class="button"> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('role-create')): ?> <a href="<?php echo e(route('role.create')); ?>" class="btn btn-primary">Tambah Data</a> <?php endif; ?> </div> </div> <div class="card-body table-responsive"> <table class="table table-striped" id="table1"> <thead> <tr> <th>no</th> <th>Nama</th> <th>Action</th> </tr> </thead> <tbody> <?php $__currentLoopData = $roles; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $role): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($index + 1); ?></td> <td> <span class="badge bg-primary"><?php echo e($role->name); ?></span></td> <td> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('role-show')): ?> <a href="<?php echo e(route('role.show', $role->id)); ?>" class="btn btn-info d-inline">Detail</a> <?php endif; ?> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('role-edit')): ?> <a href="<?php echo e(route('role.edit', $role->id)); ?>" class="btn btn-success d-inline">Edit</a> <?php endif; ?> <?php if (app(\Illuminate\Contracts\Auth\Access\Gate::class)->check('role-delete')): ?> <form action="<?php echo e(route('role.destroy', $role->id)); ?>" method="POST" class="d-inline"> <?php echo csrf_field(); ?> <?php echo method_field('DELETE'); ?> <button class="btn btn-danger"> Delete </button> </form> <?php endif; ?> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </section> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.dashboard', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/Compro-ISP/resources/views/v/role/index.blade.php ENDPATH**/ ?>
Simpan