Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
data /
core /
resources /
views /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
auth
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
deposit
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
email_template
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
extension
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
frontend
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
gateway
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
gateway_manual
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
language
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
layouts
[ DIR ]
drwxr-xr-x
2022-08-16 09:47
partials
[ DIR ]
drwxr-xr-x
2022-08-17 08:25
ptc
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
reports
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
setting
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
sms_template
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
subscriber
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
support
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
users
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
withdraw
[ DIR ]
drwxr-xr-x
2021-10-03 08:51
dashboard.blade.php
24.91
KB
-rw-r--r--
2021-10-03 08:49
info.blade.php
2.36
KB
-rw-r--r--
2021-10-03 08:49
notifications.blade.php
1007
B
-rw-r--r--
2021-10-03 08:49
password.blade.php
3.88
KB
-rw-r--r--
2021-10-03 08:49
plans.blade.php
8.07
KB
-rw-r--r--
2022-09-01 15:31
profile.blade.php
4.85
KB
-rw-r--r--
2021-10-03 08:49
referrals.blade.php
8.13
KB
-rw-r--r--
2021-10-03 08:49
reports.blade.php
2.57
KB
-rw-r--r--
2021-10-03 08:49
Save
Rename
@extends('admin.layouts.app') @section('panel') <div class="row mb-none-30"> <div class="col-md-12"> <div class="card b-radius--10 "> <div class="card-body p-0"> <div class="table-responsive--md table-responsive"> <table class="table table--light style--two"> <thead> <tr> <th>@lang('Type')</th> <th>@lang('Message')</th> <th>@lang('Status')</th> </tr> </thead> <tbody> @forelse($reports as $report) <tr> <td>{{ @$report->req_type }}</td> <td class="text-center white-space-wrap">{{ @$report->message }}</td> <td><span class="badge badge--{{ @$report->status_class }}">{{ @$report->status_text }}</span></td> </tr> @empty <tr> <td colspan="100%" class="text-center">@lang('Data not found')</td> </tr> @endforelse </tbody> </table><!-- table end --> </div> </div> </div> </div> </div> <div class="modal fade" id="bugModal" tabindex="-1" role="dialog" aria-labelledby="bugModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="bugModalLabel">@lang('Report & Request')</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <form action method="post"> @csrf <div class="modal-body"> <div class="form-group"> <label>@lang('Type')</label> <select class="form-control" name="type"> <option value="bug">@lang('Report Bug')</option> <option value="feature">@lang('Feature Request')</option> </select> </div> <div class="form-group"> <label>@lang('Message')</label> <textarea class="form-control" name="message">{{ old('message') }}</textarea> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">@lang('Close')</button> <button type="submit" class="btn btn--primary">@lang('Report')</button> </div> </form> </div> </div> </div> @endsection @push('breadcrumb-plugins') <button class="btn btn--primary" data-toggle="modal" data-target="#bugModal">@lang('Report a bug')</button> @endpush