⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.140
Server IP:
68.65.123.197
Server:
Linux premium49.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
smarbgfw
/
www
/
core
/
storage
/
framework
/
views
/
View File Name :
67989cb87ab1ddf1ce08575953cc6780175ffb47.php
<?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title">Backup</h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('admin.dashboard')); ?>"> <i class="flaticon-home"></i> </a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#">Backup</a> </li> </ul> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-title d-inline-block">Backup Lists</div> <form class="d-inline-block float-right" action="<?php echo e(route('admin.backup.store')); ?>" method="post"> <?php echo csrf_field(); ?> <button type="submit" class="btn btn-primary"><i class="fas fa-plus"></i> Create Backup</button> </form> </div> <div class="card-body"> <div class="row"> <div class="col-lg-12"> <div class="alert alert-warning text-dark" role="alert"> Make sure your database is backed up frequently. Click on "Create Backup" to backup your database. The backup are stored in the [core/storage/app/public/] folder and can be downloaded from the list below (but cannot be accessed publicly). </div> <?php if(count($backups) == 0): ?> <h3 class="text-center">NO BACKUP FOUND</h3> <?php else: ?> <div class="table-responsive"> <table class="table table-striped mt-3"> <thead> <tr> <th scope="col">Date & Time</th> <th scope="col">Actions</th> </tr> </thead> <tbody> <?php $__currentLoopData = $backups; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $backup): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($backup->created_at); ?></td> <td> <form class="d-inline-block" action="<?php echo e(route('admin.backup.download', $backup->id)); ?>" method="post"> <?php echo csrf_field(); ?> <input type="hidden" name="filename" value="<?php echo e($backup->filename); ?>"> <button type="submit" class="btn btn-secondary btn-sm"> <span class="btn-label"> <i class="fas fa-arrow-alt-circle-down"></i> </span> Download </button> </form> <form class="deleteform d-inline-block" action="<?php echo e(route('admin.backup.delete', $backup->id)); ?>" method="post"> <?php echo csrf_field(); ?> <button type="submit" class="btn btn-danger btn-sm deletebtn"> <span class="btn-label"> <i class="fas fa-trash"></i> </span> Delete </button> </form> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> <?php endif; ?> </div> </div> </div> <div class="card-footer"> <div class="row"> <div class="d-inline-block mx-auto"> <?php echo e($backups->links()); ?> </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/smarbgfw/public_html/core/resources/views/admin/backup.blade.php ENDPATH**/ ?>