@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 Candidate Name Candidate Email Candidate Mobile DOB Father Name Mother Name
{{ $key + 1 }} {{ @$candidate->ApplicationNumber ? $candidate->ApplicationNumber : null }} {{ @$candidate->CandidateName ? $candidate->CandidateName : null }} {{ @$candidate->CandidateEmail ? $candidate->CandidateEmail : null }} {{ @$candidate->CandidateName ? $candidate->CandidateName : null }} {{ @$candidate->DOB ? $candidate->DOB : null }} {{ @$candidate->FatherName ? $candidate->FatherName : null }} {{ @$candidate->MotherName ? $candidate->MotherName : null }}
No Data Found !!
@if (count($candidates) > 0) {!! $candidates->appends(request()->query())->links('pagination::bootstrap-4') !!} @endif
@endsection @push('js') @endpush