@extends('pia.layouts.app') @section('title','Pending Employers') @section('content')

Pending Employers

Create New

@foreach($employers as $key=>$employer) @endforeach
Sl.No Employer Name District Contact Number Email Id Status Actions
{{ ($key+1) }} {{ $employer->name }} {{ $employer->District->name }} {{ $employer->phone_number }} {{ $employer->email }} @if($employer->status==11 && $employer->rejected_by)
Rejected
@else @if($employer->status==1) @if($employer->approval_status==11)
Approval Pending
@elseif($employer->approval_status==1)
Active
@endif @endif @endif
@endsection