@include('layouts.header')
@foreach($emp_proof as $index => $proof) @endforeach
S.No Code Name Aadhaar PAN VoterID Driving Licence Passport
{{ $index + 1 }} {{ $proof->EmployeeCode }} {{ $proof->name }} @if($proof->aadhaar != 'NA') Show Aadhar @else Not Available @endif @if($proof->pan != 'NA') Show PAN @else Not Available @endif @if($proof->Voter != 'NA') Show VoterID @else Not Available @endif @if($proof->DL != 'NA') Show DL @else Not Available @endif @if($proof->passport != 'NA') Show Passport @else Not Available @endif
@include('layouts.footer')