@extends('layouts.default')
@section('content')
| S.No |
Name |
Mobile |
Email |
Status |
Action |
@foreach($employees_list as $employee_list)
@if($employee_list->status=='4')
| {{ $i++ }} |
{{ $employee_list->name }} |
{{ $employee_list->mobile }} |
{{ $employee_list->email }} |
Prospects |
View
Edit
|
@endif
@endforeach
| S.No |
Name |
Mobile |
Email |
Status |
Action |
@foreach($employees_list as $employee_list)
@if($employee_list->status=='0')
| {{ $i++ }} |
{{ $employee_list->name }} |
{{ $employee_list->mobile }} |
{{ $employee_list->email }} |
In Training |
View
Edit
|
@endif
@endforeach
| S.No |
Name |
Mobile |
Email |
Status |
Action |
@foreach($employees_list as $employee_list)
@if($employee_list->status=='5')
| {{ $i++ }} |
{{ $employee_list->name }} |
{{ $employee_list->mobile }} |
{{ $employee_list->email }} |
Technical Screen |
View
Edit
|
@endif
@endforeach
| S.No |
Name |
Mobile |
Email |
Status |
Action |
@foreach($employees_list as $employee_list)
@if($employee_list->status=='1')
| {{ $i++ }} |
{{ $employee_list->name }} |
{{ $employee_list->mobile }} |
{{ $employee_list->email }} |
On Bench |
View
|
@endif
@endforeach
| S.No |
Name |
Mobile |
Email |
Status |
Action |
@foreach($employees_list as $employee_list)
@if($employee_list->status=='2')
| {{ $i++ }} |
{{ $employee_list->name }} |
{{ $employee_list->mobile }} |
{{ $employee_list->email }} |
In Job |
View
|
@endif
@endforeach
| S.No |
Name |
Mobile |
Email |
Status |
Action |
@foreach($employees_list as $employee_list)
@if($employee_list->status=='3')
| {{ $i++ }} |
{{ $employee_list->name }} |
{{ $employee_list->mobile }} |
{{ $employee_list->email }} |
Dropped |
View
|
@endif
@endforeach
@stop