Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 104.23.187.75
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
justhub /
source /
resources /
views /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
advertisements
[ DIR ]
drwxr-xr-x
blogs
[ DIR ]
drwxr-xr-x
category
[ DIR ]
drwxr-xr-x
homepage
[ DIR ]
drwxr-xr-x
layouts
[ DIR ]
drwxr-xr-x
orders
[ DIR ]
drwxr-xr-x
product_gallery
[ DIR ]
drwxr-xr-x
products
[ DIR ]
drwxr-xr-x
projects
[ DIR ]
drwxr-xr-x
services
[ DIR ]
drwxr-xr-x
types
[ DIR ]
drwxr-xr-x
contact_entries.blade.php
4.63
KB
-rw-r--r--
contactinfo.blade.php
2.43
KB
-rw-r--r--
content_pages.blade.php
6.86
KB
-rw-r--r--
dashboard.blade.php
833
B
-rw-r--r--
email_settings.blade.php
2.83
KB
-rw-r--r--
headerinfo.blade.php
3.32
KB
-rw-r--r--
login.blade.php
4.06
KB
-rw-r--r--
profile.blade.php
2.63
KB
-rw-r--r--
social_media_links.blade.php
3.94
KB
-rw-r--r--
subscribers.blade.php
3.88
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : subscribers.blade.php
@extends('admin.layouts.app') @section('contents') <div> <ul class="breadcrumb"> <li> <a href="javascript:;">Newsletter Subscribers </a> </li> <li> <a href="javascript:;">Listings</a> </li> </ul> </div> <table id="no-border" style="border:5px solid #fff;"> <tr> <td align="right"><div class="box-footer clearfix"> <a href="javascript:void(0);" class="btn btn-sm btn-default btn-flat" id="del_all" onClick="javascript: deleteSelectedRecords();">DELETE SELECTED</a> </div> </td> </tr> </table> @if(session()->has('error')) <div class="alert alert-danger fade in"> <a href="#" class="close" data-dismiss="alert">×</a> {{ session()->get('error') }} </div> @endif @if(session()->has('success')) <div class="alert alert-success fade in"> <a href="#" class="close" data-dismiss="alert">×</a> {{ session()->get('success') }} </div> @endif <div class="row"> <div class="box col-md-12"> <div class="box-inner"> <div class="box-header well" data-original-title=""> <div class="box-icon"></div> </div> <div class="box-content" style="width: 100%;overflow: auto"> <table class="table table-striped table-bordered bootstrap-datatable responsive" id="contact_entries" > <thead> <tr> <th><input id="selecctall" type="checkbox"></th> <th>Subscriber E-mail</th> <th>Subscriber Date</th> <th>Actions</th> </tr> </thead> <tbody> </tbody> </table> </div> </div> </div> </div> @endsection @push('scripts') <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/bs/dt-1.11.5/r-2.2.9/datatables.min.css"/> <script type="text/javascript" src="https://cdn.datatables.net/v/bs/dt-1.11.5/r-2.2.9/datatables.min.js"></script> <script> $(document).ready(function() { resetcheckbox(); $('#selecctall').click(function(event) { //on click if (this.checked) { // check select status $('.checkboxchild').each(function() { //loop through each checkbox this.checked = true; //select all checkboxes with class "checkbox1" }); } else { $('.checkboxchild').each(function() { //loop through each checkbox this.checked = false; //deselect all checkboxes with class "checkbox1" }); } }); function resetcheckbox(){ $('input:checkbox').each(function() { //loop through each checkbox this.checked = false; //deselect all checkboxes with class "checkbox1" }); } }); $('#contact_entries').dataTable({ "pageLength": 50, processing: true, serverSide: true, ajax: '{{ route('admin.get_subscribers') }}', columns: [ {data: 'checkboxes', sortable:false,searchable:false}, {data: 'subscriber_email', name: 'subscriber_email'}, {data: 'created', name: 'created'}, {data: 'action', sortable:false,searchable:false} ] }); </script> @if(session()->has('success_message')) <script> Swal.fire({ icon: 'success', title: '{{ session()->get('success_message') }}' }) </script> @endif @endpush
Close