@extends('admin.layouts.app')
@section('title','Admin List')
@section('content')
New Candidate List from the Public Site
Please wait.Process in progress.......
| Sl.No |
Candidate Name |
Email Id |
Contact Number |
Category |
Action |
@if($data['candidates'])
@foreach($data['candidates'] as $candidate)
| {{ $loop->iteration }} |
{{$candidate->name}} |
{{$candidate->email}} |
{{$candidate->mobile_Number}} |
{{$candidate->category}} |
|
@php $i = $loop->iteration; @endphp
@endforeach
@endif
@endsection