!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/sms.picotech.app/public_html/storage/framework/views/   drwxrwxrwx
Free 28.32 GB of 117.98 GB (24.01%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     060f33ed93b57ddad233974636207165.php (10.63 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?>
    <?php if(request()->get('type') && request()->get('type')=='plan'): ?>
        <?php echo e(trans('admin.Plan_Reports')); ?>

    <?php elseif(request()->get('type') && request()->get('type')=='top_up'): ?>
        <?php echo e(trans('admin.Topup_Reports')); ?>

    <?php elseif(request()->get('type') && request()->get('type')=='message'): ?>
        <?php echo e(trans('admin.Message_Reports')); ?>

    <?php else: ?>
        <?php echo e(trans('admin.reports')); ?>

    <?php endif; ?>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('extra-css'); ?>
    <link rel="stylesheet" href="<?php echo e(asset('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')); ?>">
    <link rel="stylesheet" href="<?php echo e(asset('plugins/datatables-responsive/css/responsive.bootstrap4.min.css')); ?>">
    <link rel="stylesheet" href="<?php echo e(asset('plugins/daterangepicker/daterangepicker.css')); ?>">
    <link rel="stylesheet" href="<?php echo e(asset('plugins/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css')); ?>">
    <link rel="stylesheet" href="<?php echo e(asset('/css/custom_modal.css')); ?>">

    <style>
        .daterangepicker.show-calendar{
            top: 226.391px !important;
        }
        .custom-box-shadow{
            background: #f5f1f1 !important;
        }
    </style>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
    <!-- Main content -->
    <section class="content">
        <div class="row">
            <div class="col-12 mt-3">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title">
                            <?php if(request()->get('type') && request()->get('type')=='plan'): ?>
                                <?php echo e(trans('admin.Plan_Reports')); ?>

                            <?php elseif(request()->get('type') && request()->get('type')=='top_up'): ?>
                                <?php echo e(trans('admin.Topup_Reports')); ?>

                            <?php elseif(request()->get('type') && request()->get('type')=='message'): ?>
                                <?php echo e(trans('admin.Message_Reports')); ?>

                            <?php else: ?>
                                <?php echo e(trans('admin.reports')); ?>

                            <?php endif; ?>
                        </h2>
                        <div class="float-right">
                            <button type="button" class="btn btn-primary show_filter_modal">
                                <i class="fa fa-filter mr-2" aria-hidden="true"></i> <?php echo e(trans('admin.filter')); ?>

                            </button>
                        </div>
                    </div>

                    <!-- /.card-header -->
                    <div class="card-body table-body">
                        <table id="contacts" class="table table-striped table-bordered dt-responsive nowrap">
                            <thead>
                            <tr>
                                <th><?php echo e(trans('admin.profile')); ?></th>
                                <th><?php echo e(trans('admin.type')); ?></th>
                                <th><?php echo e(trans('admin.status')); ?></th>
                                <th><?php echo e(trans('admin.amount')); ?></th>
                                <th><?php echo e(trans('admin.transaction_id')); ?></th>
                            </tr>
                            </thead>

                        </table>
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>
            <!-- /.col -->
        </div>
        <!-- /.row -->
    </section>
    <!-- /.content -->

    <!-- Modal -->
    <div class="modal right fade" id="filterModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel2">
        <div class="modal-dialog" role="document">
            <div class="modal-content">

                <div class="modal-header justify-content-center bg-primary">
                    <h5 class="modal-title text-white" id="myModalLabel2">  <?php echo e(trans('admin.reports')); ?></h5>
                </div>

                <div class="modal-body">
                    <div class="container">
                        <form action="">
                            <div class="row">
                                <div class="col-md-12">
                                    <label for=""><?php echo e(trans('admin.Date')); ?></label>
                                    <div class="input-group">
                                        <input type="text" value="<?php echo e(isset($request_data['date'])?$request_data['date']:''); ?>" name="date"
                                               class="form-control pull-right" id="reservation">
                                    </div>
                                </div>

                                <div class="col-md-12 mt-3">
                                    <label for=""> <?php echo e(trans('admin.customers.customer')); ?></label>
                                    <select name="customer_id" id="customers" class="form-control">
                                        <option value="">--<?php echo e(trans('admin.customers.customer')); ?>--</option>
                                        <?php $__currentLoopData $customers$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $customer): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                            <option <?php echo e(isset($request_data['customer_id']) && $request_data['customer_id']==$customer->id?'selected':''); ?>

                                                    value="<?php echo e($customer->id); ?>"><?php echo e($customer->full_name); ?></option>
                                        <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                                    </select>
                                </div>

                                <div class="col-md-12 mt-3">
                                    <label for=""><?php echo e(trans('admin.type')); ?></label>
                                    <select  name="main_type" id="allType" class="form-control">
                                        <option value="">--<?php echo e(trans('admin.type')); ?>--</option>
                                        <option <?php echo e(isset($request_data['main_type']) && $request_data['main_type']=='top_up'?'selected':''); ?> value="top_up"><?php echo e(trans('admin.top_up')); ?></option>
                                        <option <?php echo e(isset($request_data['main_type']) && $request_data['main_type']=='plan'?'selected':''); ?> value="plan"><?php echo e(trans('admin.plan')); ?></option>
                                        <option <?php echo e(isset($request_data['main_type']) && $request_data['main_type']=='number'?'selected':''); ?> value="number">
                                            <?php echo e(trans('admin.numbers.number')); ?></option>
                                    </select>
                                </div>

                                <div class="col-md-6 pt-2">
                                    <button class="btn btn-danger btn-sm mt-4 d-block w-100 closeFilterModal" type="button">
                                        <?php echo e(trans('admin.close')); ?></button>
                                </div>
                                <div class="col-md-6 pt-2">
                                    <button class="btn btn-primary btn-sm mt-4 d-block w-100 float-right" type="submit">
                                        <?php echo e(trans('admin.filter')); ?></button>
                                </div>
                            </div>
                        </form>
                    </div>
                </div>

            </div><!-- modal-content -->
        </div><!-- modal-dialog -->
    </div>
    <!-- modal -->

<?php $__env->stopSection(); ?>

<?php $__env->startSection('extra-scripts'); ?>
    <script src="<?php echo e(asset('plugins/datatables/jquery.dataTables.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/datatables-responsive/js/dataTables.responsive.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/datatables-responsive/js/responsive.bootstrap4.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/daterangepicker/moment.min.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/daterangepicker/daterangepicker.js')); ?>"></script>
    <script src="<?php echo e(asset('plugins/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js')); ?>"></script>
    <script>
        "use strict";
        let orderDataTable='';
        const queryString=window.location.search;

        orderDataTable=  $('#contacts').DataTable({
            processing: true,
            serverSide: true,
            responsive:true,
            ajax:'<?php echo e(route('admin.get.all.transactions')); ?>'+queryString,

            columns: [
                { "data": "profile" },
                { "data": "type" },
                { "data": "status" },
                { "data": "amount" },
                { "data": "transaction_id" },
            ]
        });

        $(document).on('change', '#allType', function(){
            let  type = $(this).val();

            if(type=='plan'){
                $('.sub_type_section').addClass('d-none');
                $('.emptySection').removeClass('d-none');
            }else{
                $('.emptySection').addClass('d-none');
                $('.sub_type_section').removeClass('d-none');
            }
        });



        //Date range picker
        $('#reservation').daterangepicker();

        $(document).ready(function(){
            $('#reservation').val('');
        });
        $(document).on('click','.cancelBtn', function (e){
            $('#reservation').val('');
        });
        $(document).on('click','.show_filter_modal', function (e){
            $('#filterModal').modal('show');
        });
        $(document).on('click','.closeFilterModal', function (e){
            $('#filterModal').modal('hide');
        });
        $('select[name=customer_id]').select2({
            multiple:false
        })

    </script>
<?php $__env->stopSection(); ?>


<?php echo $__env->make('layouts.admin'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/picotech/domains/test.sms.picotech.app/public_html/resources/views/admin/report/transactions.blade.php ENDPATH**/ ?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0061 ]--