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 : replace_advance.blade.php
<div id="replaceBox"> <div class="row"> <h5>Filling Advances</h5> <table class="table table-bordered table-hover table-striped table-responsive"> <thead> <tr> <th>S. No.</th> <th class="fixed-width">Company Name</th> <th>Cyl. Receive Date</th> <th>Lot. No.</th> <th>Total Amount (USD)</th> </tr> </thead> <tbody> @php $sno = 1; @endphp @forelse($data['receive_advance'] as $receive) <tr> <td>{{ $sno++ }}</td> <td>{{ $receive->company_name }}</td> <td>{{ date('M d, Y',strtotime($receive->receive_date)) }} </td> <td>{{ $receive->lot_no}}</td> <td>{{ $receive->total_advance }} </td> </tr> @php $sno++ ;@endphp @empty <tr> <td colspan="5">No Data Found!!!</td> </tr> @endforelse @if($data['receive_advance']) <tr> <td colspan="4" style="text-align: right;"> <b>Advance Total</b> </td> <td><b>{{ $data['receive_advance_total'] }}</b></td> </tr> @endif </tbody> </table> </div> <div class="row"> <h5>Product Advances</h5> <table class="table table-bordered table-hover table-striped table-responsive"> <thead> <tr> <th>SN</th> <th class="fixed-width">Order By</th> <th>Order Place Date</th> <th>Order Confirm Date</th> <th>Sub Total</th> </tr> </thead> <tbody> @php $sno = 1; @endphp @forelse($data['order_advance'] as $od) <tr> <td>{{ $sno++ }}</td> <td>{{ $od->name }}</td> <td>{{ date('M d, Y',strtotime($od->order_date)) }}</td> <td>{{ date('M d, Y',strtotime($od->confirm_date)) }}</td> <td>{{ $od->order_advance }} </td> </tr> @php $sno++ ;@endphp @empty <tr> <td colspan="5">No Data Found!!!</td> </tr> @endforelse @if($data['order_advance']) <tr> <td colspan="4" style="text-align: right;"> <b>Advance Total</b> </td> <td><b>{{ $data['order_advance_total'] }}</b></td> </tr> @endif </tbody> </table> </div> </div>
Close