@extends('layouts.default', ['appTopMenu' => true]) @section('title', 'Account Book') @section('content')

Search Applicant By Name

@if ($errors->any())
There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
input('search_type', old('search_type')) =="exact" ? 'checked='.'"checked"' : (request()->input('search_type', old('search_type')) =="" ? 'checked='.'"checked"' : '') }} >
input('search_type', old('search_type')) =="like" ? 'checked='.'"checked"' : '' }} >
@if(isset($applications)) @if(!empty($applications)) @php $sr=1; @endphp @foreach ($applications AS $application_key => $application) @php $case_type_string= getCaseType($case_types,$application->case_type_no); @endphp @php $sr++; @endphp @endforeach
Sr. No. Application Applicant CaseDetail App. Type Received Date Delivered Date Rec. Amt Applied For
{{$sr}} {{$application->app_no}}/{{$application->app_year}} {{$application->applicant}} {{$case_type_string}}/{{$application->case_no}}/{{$application->case_year}} {{$application->app_type}} {{YYYYMMDDtoDateFormat($application->rec_dt)}} {{YYYYMMDDtoDateFormat($application->del_dt)}} {{$application->rec_amt+$application->post_amt+$application->sum_further_amt+$application->sum_fur_amt_post;}}
@else
No Result Found.
@endif @endif
@endsection @push('scripts') @endpush