@if (count($dataLists) > 0)
S.No |
App No |
Name |
Email ID |
Mobile |
Email Sent |
@if (count($dataLists) > 0)
@foreach ($dataLists as $key => $dataList)
{{ $key + 1 }} |
{{ isset($dataList->ApplicationNumber) ? $dataList->ApplicationNumber : null }}
|
{{ isset($dataList->CandidateName) ? $dataList->CandidateName : null }}
|
{{ isset($dataList->CandidateEmail) ? $dataList->CandidateEmail : null }}
|
{{ isset($dataList->CandidateMobile) ? $dataList->CandidateMobile : null }}
|
@if(isset($dataList->IsEmailSent)=='0') Not Sent @else Sent @endif
|
@endforeach
@else
No Data Found !!
|
@endif
{!! $dataLists->appends(request()->query())->links('pagination::bootstrap-4') !!}
@endif