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

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /home/nicngo5/nicnwebsiteUpgrade/resources/views/Causelist/search.blade.php
@extends('layouts.layout')
@section('pageTitle')
  Causelist
@endsection
@section('currentLitigation')
    current-menu-item
@stop
<!-- /Header -->
@section('content')

@include('_partialView.PageTop', array('fileName' => '' ))
 <div class="container">

        <section id="content">
            <!-- Section -->
            <section class="full-width-bg">
                
                <div class="row">
                
                    <div class="col-lg-12 col-md-12 col-sm-12">

                        <div class="animate-onscroll">
                            <div class="banner-wrapper">
                                <div class="banner" style="background: #fafbfd">
                                    <form method="post" action="{{url('/causelist')}}">
                                        {{ csrf_field() }}
                                        <div class="alert alert-success">
                                            Search for causelist
                                        </div>
                                    <div class="col-xs-12">
                                        @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('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> 
                                            {{ session('msg') }}
                                        </div>                        
                                        @endif

                                    </div>
                                        <div class="row">
                                            <div class="col-sm-6">
                                                <select name="division" class="form-control">
                                                    <option value="">SELECT COURT DIVISION</option>
                                                    @foreach($getDivision as $field)
                                                        <option value="{{$field->division}}">{{$field->division}}</option>
                                                    @endforeach
                                                </select>
                                            </div>
                                            <div class="col-sm-6" style="z-index: 10000">
                                                <input type="text" name="date" id="date" class="form-control" placeholder="Select Date">
                                            </div>
                                        </div>
                                        <div class="row">
                                            <div align="center" class="col-sm-12">
                                                <input type="submit" value="Search" name="search">
                                            </div>
                                        </div>
                                        <hr />

                                    </form>

                                    <div class="row">
                                            <div class="col-sm-12">
                                                <table>
                                                    <tbody id="myTable">
                                                        <tr>
                                                        <td>
                                                        
                                                        @php $key = 1; @endphp
                                                        @foreach($allCauselist as $field)
                                                        <div class="row">
                                                            <div class="col-sm-12">
                                                                <table class="table table-bordered" style="background: #fff; border: 1px solid #f3f3f3;" align="center">
                                                                        <tr>
                                                                            <td width="10">{{($allCauselist->currentpage()-1) * $allCauselist->perpage() + $key ++}}</td>
                                                                            <td colspan="2">
                                                                                <div align="center">
                                                                                    <b>{{strtoupper($field->sittingdate)}}. HOLDEN AT {{$field->division}}</b>
                                                                                </div>
                                                                            </td>
                                                                        </tr>
                                                                        <tr>
                                                                            <td colspan="3">
                                                                                <div align="center"><b>{{$field->subject}}</b></div>
                                                                            </td>
                                                                        </tr>
                                                                        <tr>
                                                                            <td colspan="2">
                                                                                <div align="center" style="width:100px"><b>NUMBER </b></div>
                                                                            </td>
                                                                            <td>
                                                                                <div align="center"><b>PARTIES</b></div>
                                                                            </td>
                                                                        </tr>
                                                                        <tr>
                                                                            <td colspan="2">
                                                                                <div class="text-center">{{$field->suitno}}</div>
                                                                            </td>
                                                                            <td>
                                                                                <div class="text-center">
                                                                                   <big>
                                                                                        <?php
                                                                                            echo preg_replace('/\b(VS)\b/i', '<span style="color:green; font-weight:900;">$1</span>', $field->party);
                                                                                        ?>
                                                                                    </big>
                                                                                </div>
                                                                            </td>
                                                                        </tr>
                                                                </table>
                                                                </div>
                                                            </div>
                                                        <div class="space"><hr style="border: 1px thin green;"></div>
                                                        @endforeach
                                                        
                                                    </td><!--//main td-->
                                                    </tr><!--//main tr-->
                                                </tbody><!--//main tbody-->
                                                </table><!--//main table-->
                                                <div align="right">
                                              Showing {{($allCauselist->currentpage()-1) * $allCauselist->perpage() +1}}
                                                      to {{$allCauselist->currentpage() * $allCauselist->perpage()}}
                                                      of {{$allCauselist->total()}} entries
                                            </div>
                                            <div class="hidden-print">{{ $allCauselist->links() }}</div>
                                    </div>
                                    </div>

                                </div>
                            </div>
                        </div>

                    </div>
                    
                  

                </div>
            </section>
            <!-- /SideBar Section -->
        </section>
    </div>
@stop

@section('styles')
<link rel="stylesheet" type="text/css" href="{{asset('css/datepicker.min.css')}}">
@stop

@section('scripts')
<script src="{{asset('js/jquery-ui.min.js')}}"></script>
  <script type="text/javascript">
////////////////////////////////////////////////////////
$( function() {
    $( "#date" ).datepicker({changeMonth: true,changeYear: true,dateFormat: 'yy-mm-dd'});
  } );

  </script>
@stop

Anon7 - 2022
AnonSec Team