@if ($errors->any())
There were some problems with your input.
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if(isset($applications))
@if(!$applications->isEmpty())
@php
$sr=1;
@endphp
@foreach ($applications AS $application_key => $application_value)
@php
$sr++;
@endphp
@endforeach
Sr. No. |
Application |
Applicant |
CaseDetail |
App. Type |
Received Date |
Delivered Date |
Withdraw date |
Filed date |
{{$sr}} |
{{$application_value->app_no}}/{{$application_value->app_year}} |
{{$application_value->applicant}} |
{{$application_value->fil_no}} |
{{$application_value->app_type}} |
{{YYYYMMDDtoDateFormat($application_value->rec_dt)}} |
{{YYYYMMDDtoDateFormat($application_value->del_dt)}} |
{{YYYYMMDDtoDateFormat($application_value->withdraw_dt)}} |
{{YYYYMMDDtoDateFormat($application_value->filed_dt)}} |
@else
No Result Found.
@endif
@endif