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


Viewing file:     7222653a384119081e23db4026ba057c.php (9.83 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'trans('customer.inbox_smsbox')); ?>

<?php $__env->startSection('content'); ?>

    <!-- Content Header (Page header) -->
    <section class="content-header">
        <div class="container-fluid">
            <div class="row mb-2">
                <div class="col-sm-6">
                    <h1>Inbox</h1>
                </div>
                <div class="col-sm-6">
                    <ol class="breadcrumb float-sm-right">
                        <li class="breadcrumb-item"><a href="<?php echo e(route('customer.smsbox.inbox')); ?>"><?php echo e(trans('customer.smsbox')); ?></a></li>
                        <li class="breadcrumb-item active"><?php echo e(trans('customer.inbox')); ?></li>
                    </ol>
                </div>
            </div>
        </div><!-- /.container-fluid -->
    </section>

    <!-- Main content -->
    <section class="content">
        <div class="row">
            <div class="col-md-3">
                <a href="<?php echo e(route('customer.smsbox.compose')); ?>" class="btn btn-primary btn-block mb-3"><?php echo e(trans('customer.compose')); ?></a>

                <?php echo $__env->make('customer.smsbox.common'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?>
            </div>
            <!-- /.col -->
            <div class="col-md-9">
                <div class="card card-primary card-outline">
                    <div class="card-header">
                        <h3 class="card-title"><?php echo e(trans('customer.inbox')); ?></h3>

                        <div class="card-tools d-none">
                            <div class="input-group input-group-sm">
                                <input type="text" class="form-control" placeholder="<?php echo e(trans('customer.search_mail')); ?>">
                                <div class="input-group-append">
                                    <div class="btn btn-primary">
                                        <i class="fas fa-search"></i>
                                    </div>
                                </div>
                            </div>
                        </div>
                        <!-- /.card-tools -->
                    </div>
                    <!-- /.card-header -->
                    <div class="card-body p-0">
                        <div class="mailbox-controls">
                            <!-- Check all button -->
                            <button id="checkbox-toggle" data-checked="false" type="button" class="btn btn-default btn-sm checkbox-toggle"><i
                                    class="far fa-square"></i>
                            </button>
                            <div class="btn-group">
                                <button data-message="<?php echo e(trans('customer.messages.move_trash')); ?>"
                                        data-action="<?php echo e(route('customer.smsbox.inbox.trash')); ?>"
                                        data-input=''
                                        id="move-trash"
                                        data-toggle="modal" data-target="#modal-confirm"
                                        type="button" class="btn btn-default btn-sm"><i class="far fa-trash-alt"></i>
                                </button>
                            </div>
                            <!-- /.btn-group -->
                            <button type="button" class="d-none btn btn-default btn-sm"><i class="fas fa-sync-alt"></i>
                            </button>
                            <div class="float-right d-none">
                                1-50/200
                                <div class="btn-group">
                                    <button type="button" class="btn btn-default btn-sm"><i
                                            class="fas fa-chevron-left"></i></button>
                                    <button type="button" class="btn btn-default btn-sm"><i
                                            class="fas fa-chevron-right"></i></button>
                                </div>
                                <!-- /.btn-group -->
                            </div>
                            <!-- /.float-right -->
                        </div>
                        <div class="table-responsive mailbox-messages">
                            <table class="table table-hover table-striped">
                                <thead>
                                <td>
                                <th><?php echo e(trans('customer.from')); ?></th>
                                <th><?php echo e(trans('customer.to')); ?></th>
                                <th><?php echo e(trans('customer.message')); ?></th>
                                <th><?php echo e(trans('customer.received_at')); ?></th>
                                <th><?php echo e(trans('customer.address')); ?></th>
                                </td>
                                </thead>
                                <tbody>
                                <?php $__currentLoopData $messages$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $message): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                    <tr data-message-id="<?php echo e($message->id); ?>"
                                        title="<?php echo e($message->read=='yes'?'Already Read':'Haven\'t Read'); ?>"
                                        class="<?php echo e($message->read=='yes'?'smsbox-read':'smsbox-unread'); ?>">
                                        <td>
                                            <div class="icheck-primary">
                                                <input class="check-single" data-id="<?php echo e($message->id); ?>" type="checkbox"
                                                       value="" id="check-<?php echo e($message->id); ?>">
                                                <label for="check-<?php echo e($message->id); ?>"></label>
                                            </div>
                                        </td>
                                        <td class="mailbox-name"><?php echo e($message->formatted_number_from); ?></td>
                                        <td class="mailbox-name"><?php echo e($message->formatted_number_to); ?></td>
                                        <td class="mailbox-subject">
                                            <div class="show-more">
                                                <?php echo e($message->body); ?>

                                            </div>
                                        </td>
                                        <td class="mailbox-date"><?php echo e($message->time); ?></td>
                                        <td><?php echo e(isset($contact_address[$message->formatted_number_from])?$contact_address[$message->formatted_number_from]:''); ?></td>

                                    </tr>
                                <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                                </tbody>
                            </table>

                            <div class="float-right"> <?php echo e($messages->links("pagination::bootstrap-4")); ?> </div>
                            <!-- /.table -->
                        </div>
                        <!-- /.mail-box-messages -->
                    </div>
                    <!-- /.card-body -->
                </div>
                <!-- /.card -->
            </div>
            <!-- /.col -->
        </div>
        <!-- /.row -->
    </section>
    <!-- /.content -->


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

<?php $__env->startSection('extra-scripts'); ?>
    <script !src="">
        "use strict";
        $(document).on('click', '.smsbox-unread', function (e) {
            e.preventDefault();
            $(this).removeClass('smsbox-unread').addClass('smsbox-read').attr('title', 'Already Read');
            const id = $(this).attr('data-message-id');
            $.ajax({
                method: 'post',
                url: '<?php echo e(route('customer.smsbox.inbox.change-status')); ?>',
                data: {_token: '<?php echo e(csrf_token()); ?>', id: id, status: 'read'},
                success: function (res) {
                    if (res.status == 'success') {
                        notify('success', res.message);
                    } else {
                        notify('danger', res.message);
                    }
                }
            })
        })

        $('#checkbox-toggle').on('click', function (e) {
            e.preventDefault();
            if ($(this).attr('data-checked') == 'false') {
                $(this).attr('data-checked', 'true');
                $(this).find('i').removeClass('fa-square').addClass('fa-check-square');
            } else {
                $(this).attr('data-checked', 'false');
                $(this).find('i').addClass('fa-square').removeClass('fa-check-square');
            }

            $('.check-single').click();
        })

        $('#move-trash').on('click', function (e) {
            const classes = document.getElementsByClassName("check-single");
            let totalIds = [];
            let ids = [];
            for (var i = 0; i < classes.length; i++) {
                if ($(classes.item(i)).is(':checked'))
                    ids[i] = $(classes.item(i)).attr('data-id');
            }
            totalIds['ids'] = ids;
            $(this).attr('data-input', JSON.stringify(Object.assign({}, totalIds))).modal('show');

        });
        $(".show-more").css('overflow', 'hidden').readmore({collapsedHeight: 20});
    </script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.customer'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /home/picotech/domains/sms.picotech.app/public_html/resources/views/customer/smsbox/inbox.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 ]--