@extends('employer.layouts.app') @section('title','Employee List') @section('content')

Employee List


@foreach($employees as $key=>$employee) @endforeach
Sl.No Employee Name Status Actions
{{ ($key+1) }} {{ $employee->name}} @if($employee->status==11)
Waiting for Approval
@else @if($employee->status==1) @if($employee->approval_status==11)
Approval Pending
@elseif($employee->approval_status==1)
Active
@endif @endif @endif
@endsection