@extends('layouts.default', ['appTopMenu' => true]) @section('title', 'Application Not Delivered Report By DateTime') @section('content')

Application Not Delivered Report By DateTime

@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 $sn =1; $total_amount = 0; $total_remaining_amount=0; @endphp @foreach ($applications AS $application_key => $application) @php $cstp =$application->str_case_no; @endphp @php($flag='0') @if($application->on_off_flag =="1") @php($flag='Online') @elseif($application->on_off_flag =="2") @php($flag='Offline') @endif @php($sn++) @endforeach
SN Application Applicant CaseDetail App. Type Received Date Expt. Delivered Date Rec. Amt Mode
{{$sn}} {{$application->app_no}} / {{$application->app_year}} {{$application->applicant}} {{$cstp}} {{$application->app_type}} {{YYYYMMDDHistoDateFormat($application->ent_time)}} {{YYYYMMDDtoDateFormat($application->del_dt)}} {{$application->rec_amt}} {{$flag}}
@else
No Result Found.
@endif @endif
@endsection @push('scripts') @endpush