!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-163-generic #173-Ubuntu SMP Tue Oct 14 17:51:00 UTC
2025 x86_64
 

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

Safe-mode: OFF (not secure)

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


Viewing file:     8620f96b3d3fd993bc6ae768b4e8641f.php (7.17 KB)      -rwxr--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(trans('admin.coverage_area')); ?> <?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')); ?>">
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
    <!-- Main content -->
    <section class="content">
        <div class="row">
            <div class="col-12">
                <div class="card">
                    <div class="card-header">
                        <h2 class="card-title">
                            
                            <?php echo e(trans('admin.coverage')); ?>

                            <button class="btn btn-sm btn-outline-info mr-2" type="button" data-toggle="collapse" data-target="#coverageInfo" aria-expanded="false" aria-controls="coverageInfo" title="Show Information">
                                <i class="fas fa-info-circle"></i>
                            </button>
                        </h2>
                        <div class="float-right">
                            <a class="btn btn-primary" href="<?php echo e(route('admin.coverage.create')); ?>"><?php echo e(trans('admin.create')); ?></a>
                        </div>
                    </div>
                    <!-- /.card-header -->
                    <div class="collapse" id="coverageInfo">
                        <div class="card-body border-bottom bg-light">
                            <div class="row">
                                <div class="col-md-12">
                                    <h5 class="text-primary mb-3"><i class="fas fa-info-circle mr-2"></i>What is Coverage?</h5>
                                    <p class="text-muted mb-3">
                                        Coverage determines which countries and messaging services are available for your SMS platform. 
                                        This feature allows you to control which types of messages can be sent or received in different countries.
                                    </p>
                                </div>
                            </div>
                            <div class="row">
                                <div class="col-md-6">
                                    <h6 class="font-weight-bold mb-2">Available Message Types:</h6>
                                    <ul class="list-unstyled ml-3">
                                        <li class="mb-2"><i class="fas fa-sms text-primary mr-2"></i><strong>Plain SMS:</strong> Standard text messages</li>
                                        <li class="mb-2"><i class="fas fa-image text-success mr-2"></i><strong>MMS:</strong> Messages with images, videos, or other media</li>
                                        <li class="mb-2"><i class="fas fa-phone-volume text-info mr-2"></i><strong>Voice SMS:</strong> Text-to-speech messages delivered as phone calls</li>
                                        <li class="mb-2"><i class="fab fa-whatsapp text-success mr-2"></i><strong>WhatsApp SMS:</strong> Messages sent through WhatsApp Business API</li>
                                    </ul>
                                </div>
                                <div class="col-md-6">
                                    <h6 class="font-weight-bold mb-2">How to Use:</h6>
                                    <ul class="list-unstyled ml-3">
                                        <li class="mb-2"><i class="fas fa-plus-circle text-primary mr-2"></i>Click <strong>"Create"</strong> to add a new country with specific messaging capabilities</li>
                                        <li class="mb-2"><i class="fas fa-toggle-on text-success mr-2"></i>Enable or disable sending and receiving for each message type per country</li>
                                        <li class="mb-2"><i class="fas fa-edit text-warning mr-2"></i>Use the <strong>"Action"</strong> column to edit or remove existing coverage settings</li>
                                    </ul>
                                </div>
                            </div>
                        </div>
                    </div>
                    <div class="card-body  table-body">
                        <table id="coverage" class="table table-striped table-bordered dt-responsive nowrap">
                            <thead>
                            <tr>
                                <th><?php echo e(trans('admin.country')); ?></th>
                                <th><?php echo e(trans('admin.plain_sms')); ?></th>
                                <th><?php echo e(trans('admin.receive_sms')); ?></th>
                                <th><?php echo e(trans('admin.send_sms')); ?></th>
                                <th><?php echo e(trans('admin.receive_sms')); ?></th>
                                <th><?php echo e(trans('admin.send_voice_sms')); ?></th>
                                <th><?php echo e(trans('admin.receive_voice_sms')); ?></th>
                                <th><?php echo e(trans('admin.send_whatsapp_sms')); ?></th>
                                <th><?php echo e(trans('admin.receive_whatsapp_sms')); ?></th>
                                <th><?php echo e(trans('admin.action')); ?></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";
        $('#coverage').DataTable({
            processing: true,
            serverSide: true,
            responsive:true,
            ajax:'<?php echo e(route('admin.get.all.coverage')); ?>',
            columns: [
                { "data": "country" },
                { "data": "plain_sms" },
                { "data": "receive_sms" },
                { "data": "send_mms" },
                { "data": "receive_mms" },
                { "data": "send_voice_sms" },
                { "data": "receive_voice_sms" },
                { "data": "send_whatsapp_sms" },
                { "data": "receive_whatsapp_sms" },
                { "data": "action" },
            ]
        });
    </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/coverage/index.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.0044 ]--