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
/
View File Name :
fdf3114a29aa722ae33f325482ce35f8.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 Logs User</h3> </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"><a href="#">ACL</a></li> <li class="breadcrumb-item active" aria-current="page">Logs</li> </ol> </nav> </div> </div> </div> <!-- Tabel Pengguna --> <section class="section"> <div class="card"> <div class="card-header"> <h4>Data Pengguna</h4> </div> <div class="card-body"> <div class="table-responsive"> <table class="table" id="table1"> <thead> <tr> <th>No</th> <th>Name</th> <th>Roles</th> <th>Last Seen</th> <th>Status</th> </tr> </thead> <tbody> <?php $__currentLoopData = $allUsers; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $user): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($index + 1); ?></td> <td><?php echo e($user->name); ?></td> <td> <?php $__currentLoopData = $user->roles()->pluck('name'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <span class="badge bg-primary"><?php echo e($item); ?></span> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </td> <td><?php echo e($user->formatted_last_seen); ?></td> <td> <span class="badge <?php echo e($user->isActive() ? 'bg-primary' : 'bg-danger'); ?>"> <?php echo e($user->status); ?> </span> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </section> <!-- Tabel Aktivitas Pengguna --> <section class="section mt-4"> <div class="card"> <div class="card-header"> <h4>Aktivitas Pengguna</h4> </div> <div class="card-body"> <div class="table-responsive"> <table class="table table-striped" id="table2"> <thead> <tr> <th>No</th> <th>Model</th> <th>Model ID</th> <th>Event</th> <th>User</th> <th>IP</th> <th>Old Data</th> <th>New Data</th> <th>Headers</th> <th>Waktu</th> </tr> </thead> <tbody> <?php $__currentLoopData = $logs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $index => $log): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($index + 1); ?></td> <td><?php echo e(class_basename($log->model)); ?></td> <td><?php echo e($log->model_id); ?></td> <td><?php echo e(ucfirst($log->event)); ?></td> <td><?php echo e(optional($log->user)->name ?? 'Guest'); ?></td> <td><?php echo e($log->ip); ?></td> <td> <pre style="max-height: 150px; overflow:auto;"><?php echo e(json_encode($log->old_data, JSON_PRETTY_PRINT)); ?></pre> </td> <td> <pre style="max-height: 150px; overflow:auto;"><?php echo e(json_encode($log->new_data, JSON_PRETTY_PRINT)); ?></pre> </td> <td> <pre style="max-height: 150px; overflow:auto;"><?php echo e(json_encode($log->headers, JSON_PRETTY_PRINT)); ?></pre> </td> <td><?php echo e($log->created_at->format('d M Y H:i:s')); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </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/log/index.blade.php ENDPATH**/ ?>