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

Received 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 $sn=1; @endphp @foreach ($applications AS $application_key => $application) @php $cstp = $application->str_case_no; @endphp @php($flag='1111') @if($application->on_off_flag =="1") @php($flag='Online') @elseif($application->on_off_flag =="2") @php($flag='Offline') @endif @endforeach
SN Application Applicant CaseDetail App. Type Received Date Delivered Date Rec. Amt Entry Dt. Actual Deliver Dt. Application Status Copy Status Received Mode /Desire Mode
{{$sn++}} {{$application->app_no}} / {{$application->app_year}} {{$application->applicant}} {{$cstp}} {{$application->app_type}} {{YYYYMMDDtoDateFormat($application->rec_dt)}} {{YYYYMMDDtoDateFormat($application->del_dt)}} {{$application->rec_amt}} {{$application->ent_dt}} {{YYYYMMDDtoDateFormat($application->actual_del_dt)}} {{$application->copy_is}}
Counter
@else
No Result Found.
@endif @endif
@endsection @push('scripts') @endpush