@extends('layouts.app') @section('title') Candidate @endsection @section('content')
Register Candidate

Clear
@if (count($candidates) > 0) @foreach ($candidates as $key => $candidate) @endforeach @else @endif
S.No Application No Roll Number Candidate Name DOB Father Name Admit Card Initial score card Revised score card Confirmation Page OMR Sheet Actvity Log Documents
{{ $key + 1 }} {{ @$candidate->ApplicationNumber ? $candidate->ApplicationNumber : null }} {{ @$candidate->ROLL ? $candidate->ROLL : null }} {{ @$candidate->CandidateName ? $candidate->CandidateName : null }} {{ @$candidate->DOB ? $candidate->DOB : null }} {{ @$candidate->FatherName ? $candidate->FatherName : null }} View View View View View View View
No Data Found !!
@if (count($candidates) > 0) {!! $candidates->appends(request()->query())->links('pagination::bootstrap-4') !!} @endif
@endsection @push('js') @endpush