webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
resources
/
views
/
back
/
item
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
affiliate
--
ren
attribute
--
ren
attribute_option
--
ren
digital
--
ren
license
--
ren
add.blade.php
4.426KB
edt
ren
bulk-upload.blade.php
2.659KB
edt
ren
campaign.blade.php
9.102KB
edt
ren
create.blade.php
14.198KB
edt
ren
edit.blade.php
19.488KB
edt
ren
highlight.blade.php
2.727KB
edt
ren
index.blade.php
7.711KB
edt
ren
stockout.blade.php
2.498KB
edt
ren
table.blade.php
3.791KB
edt
ren
@extends('master.back') @section('content') <!-- Start of Main Content --> <div class="container-fluid"> <!-- Page Heading --> <div class="card mb-4"> <div class="card-body"> <div class="d-sm-flex align-items-center justify-content-between"> <h3 class="mb-0 bc-title"><b>{{ __('Stock Out Products') }}</b></h3> </div> </div> </div> <!-- DataTales --> <div class="card shadow mb-4"> <div class="card-body"> @include('alerts.alerts') <br> <div class="gd-responsive-table"> <table class="table table-bordered table-striped" id="admin-table" width="100%" cellspacing="0"> <thead> <tr> <th> <input type="checkbox" data-target="product-bulk-delete" class="form-control bulk_all_delete"> </th> <th>{{ __('Image') }}</th> <th width="30%">{{ __('Name') }}</th> <th>{{ __('Price') }}</th> <th>{{ __('Status') }}</th> <th>{{ __('Type') }}</th> <th>{{ __('Item Type') }}</th> <th>{{ __('Actions') }}</th> </tr> </thead> <tbody> @include('back.item.table',compact('datas')) </tbody> </table> </div> </div> </div> </div> </div> <!-- End of Main Content --> {{-- DELETE MODAL --}} <div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="confirm-deleteModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <!-- Modal Header --> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLabel">{{ __('Confirm Delete?') }}</h5> <button class="close" type="button" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <!-- Modal Body --> <div class="modal-body"> {{ __('You are going to delete this item. All contents related with this item will be lost.') }} {{ __('Do you want to delete it?') }} </div> <!-- Modal footer --> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">{{ __('Cancel') }}</button> <form action="" class="d-inline btn-ok" method="POST"> @csrf @method('DELETE') <button type="submit" class="btn btn-danger">{{ __('Delete') }}</button> </form> </div> </div> </div> </div> {{-- DELETE MODAL ENDS --}} @endsection