@extends('layouts.default', ['appTopMenu' => true]) @section('title', 'Search Default Application Between Date') @section('content')

Search Default Application Between Date

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

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(isset($applications))

Report Of Default Application from {{ request()->input('date_from', old('date_from',date('d-m-Y'))) }} to {{ request()->input('date_to', old('date_to',date('d-m-Y'))) }}

@if(!$applications->isEmpty()) @php $sn =1; @endphp @foreach ($applications AS $application_key => $application) @php $cstp =$application->str_case_no; @endphp @if(isNullOrEmpty($application->actual_del_dt)) @php $a="a"; @endphp @else @php $a="table-success"; @endphp @endif @php($sn++) @endforeach
SN Application Applicant CaseDetail App. Type Default Date Received Date Delivered Date Rec. Amt Mode Reason
{{$sn}} {{$application->app_no}} / {{$application->app_year}} {{$application->applicant}} {{$cstp}} {{$application->app_type}} {{YYYYMMDDtoDateFormat($application->default_dt)}} {{YYYYMMDDtoDateFormat($application->rec_dt)}} {{YYYYMMDDtoDateFormat($application->del_dt)}} {{$application->rec_amt}} @if($application->on_off_flag == "1") Online @elseif($application->on_off_flag == "2") Offline @endif {{$application->reason}}
@else
No Result Found.
@endif
@endif
@endsection @push('scripts') @endpush