@extends('layouts.app') @section('title') Procurement Data Lists @endsection @section('content')
Candidate Lists Total : {{ isset($dataListCount) ? $dataListCount :0 }}

@if (count($dataLists) > 0) @endif


@if (count($dataLists) > 0)
@if (count($dataLists) > 0) @foreach ($dataLists as $key => $dataList) @endforeach @else @endif
S.No App No Name Email ID Mobile Email Sent
{{ $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
No Data Found !!
{!! $dataLists->appends(request()->query())->links('pagination::bootstrap-4') !!}
@endif
@endsection @push('js') @endpush