@extends('layouts.default', ['appTopMenu' => true]) @section('title', 'online Pending Application') @section('content')

online Pending Application

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

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(isset($applications)) @if(!$applications->isEmpty()) @php $sno = 1; @endphp @foreach ($applications AS $application_key => $application) @php $sno++; @endphp @endforeach
SN Application Applicant CaseDetail App. Type Received Date Delivered Date App.Charges Rec. Amt Mode Action
{{$sno}} {{$application->app_no}} / {{$application->app_year}} {{$application->applicant}}
{{$application->mobile}}
{{$application->str_case_no}} {{$application->app_type}} {{YYYYMMDDtoDateFormat($application->rec_dt)}} {{YYYYMMDDtoDateFormat($application->rec_dt)}} {{$application->app_form_fee}} {{$application->rec_amt}} {{$application->desired_mode}} Request Rec. for Digitization
@else
No Result Found.
@endif @endif
@endsection @push('scripts') @endpush