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

@if (count($documents) > 0) Download Zip @endif
@if (count($documents) > 0) @foreach ($documents as $key => $document) @endforeach @else @endif
S.No Application No Candidate Name DOB Documents Type Action
{{ $key + 1 }} {{ @$document->ApplicationNumber ? $document->ApplicationNumber : null }} {{ @$document->CandidateName ? $document->CandidateName : null }} {{ @$document->DOB ? $document->DOB : null }} {{ @$document->DocumentName ? $document->DocumentName : null }} Download
No Data Found !!
@if (count($documents) > 0) {!! $documents->appends(request()->query())->links('pagination::bootstrap-4') !!} @endif
@endsection @push('js') @endpush