@extends('layouts.app') @section('title') Procurement Data Lists @endsection @section('content')
Procurement Data Lists ( {{ $CityIntemationTotalCount ? $CityIntemationTotalCount : 0 }} )

Clear
@if (count($CityIntemationTblAlls) > 0) @foreach ($CityIntemationTblAlls as $key => $CityIntemationTblAll) @php if($CityIntemationTblAll->ExamShift=='1'){ $examShift="First"; $examTime="09:00 Am - 11:00 Am"; } else { $examShift="Second"; $examTime="03:00 Pm - 05:00 Pm"; } @endphp @endforeach @else @endif
S.No Roll No Application No Candidate Name Gender DOB Father's Name Mother's Name Center Code Center Name Center Address City Exam Shift Exam Date and Time
{{ $key + 1 }} {{ $CityIntemationTblAll->Rollnumber ? $CityIntemationTblAll->Rollnumber : null }} {{ $CityIntemationTblAll->ApplicationNumber ? $CityIntemationTblAll->ApplicationNumber : null }} {{ $CityIntemationTblAll->CandidateName ? $CityIntemationTblAll->CandidateName : null }} {{ $CityIntemationTblAll->GenderName ? $CityIntemationTblAll->GenderName : null }} {{ $CityIntemationTblAll->DOB ? date("d-m-Y", strtotime($CityIntemationTblAll->DOB)) : null }} {{ $CityIntemationTblAll->FatherName ? $CityIntemationTblAll->FatherName : null }} {{ $CityIntemationTblAll->MotherName ? $CityIntemationTblAll->MotherName : null }} {{ $CityIntemationTblAll->TestCentreNumber ? $CityIntemationTblAll->TestCentreNumber : null }} {{ $CityIntemationTblAll->TestCentreName ? $CityIntemationTblAll->TestCentreName : null }} {{ $CityIntemationTblAll->VenueAddress ? $CityIntemationTblAll->VenueAddress : null }} {{ $CityIntemationTblAll->ExamCity ? $CityIntemationTblAll->ExamCity : null }} {{ $examShift ? $examShift :null}} {{ $CityIntemationTblAll->ExamDate ? date("d-m-Y", strtotime($CityIntemationTblAll->ExamDate))." ".$examTime : null }}
No Data Found !!
{!! $CityIntemationTblAlls->appends(request()->query())->links('pagination::bootstrap-4') !!}
@endsection @push('js') @endpush