Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
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 /
html /
sdgamatya /
resources /
views /
dashboard /
[ HOME SHELL ]
Name
Size
Permission
Action
advance.blade.php
1.74
KB
-rw-r--r--
all_client_statement.blade.php
3.45
KB
-rw-r--r--
client_statement.blade.php
1.74
KB
-rw-r--r--
dues.blade.php
1.73
KB
-rw-r--r--
replace_advance.blade.php
2.12
KB
-rw-r--r--
replace_client_statement.blade...
1.35
KB
-rw-r--r--
replace_sales.blade.php
2.11
KB
-rw-r--r--
sales.blade.php
1.58
KB
-rw-r--r--
total_advance.blade.php
4
KB
-rw-r--r--
total_client_statement.blade.p...
1.74
KB
-rw-r--r--
total_dues.blade.php
1.73
KB
-rw-r--r--
total_sales.blade.php
4.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sales.blade.php
<div class="modal-header"> <button type="button" class="close" data-dismiss="modal">×</button> <h4 class="modal-title">Total Sales</h4> </div> <h3>Refill Sales</h3> <div class="modal-body"> <table class="table table-bordered table-hover table-striped "> <thead> <tr> <th class="fixed-width">Company Name</th> <th>Date</th> <th>Cyl. Quantity</th> <th>Sales Amount</th> <th>VAT</th> <th>VAT Amount</th> <th>Total Amount (USD)</th> </tr> </thead> <tbody> @forelse($data['receives'] as $receive) <tr> <td>{{ $receive->company_name }}</td> <td>{{ $receive->date }}</td> <td>{{ $receive->total_quantity }}</td> <td>{{ $receive->total_amount }}</td> <td>{{ vat() }}</td> <td>{{ $receive->total_amount * vat()}}</td> <td>{{ $receive->total_amount + ($receive->total_amount * vat())}}</td> </tr> @empty <tr> <td colspan="6">No Data Found!!!</td> </tr> @endforelse </tbody> </table> </div> <h3>Product Sales</h3> <div class="modal-body"> <table class="table table-bordered table-hover table-striped "> <thead> <tr> <th class="fixed-width">Company Name</th> <th>Confirm Date</th> <th>Order Type</th> <th>Total</th> </tr> </thead> <tbody> @forelse($data['confirmed_order'] as $order) <tr> <td>{{ $order->customer->company_name }}</td> <td>{{ $order->confirm_date }}</td> <td>{{ $order->type }}</td> <td>500000</td> </tr> @empty <tr> <td colspan="5">No Data Found!!! </td> </tr> @endforelse </tbody> </table> </div>
Close