@extends('SuperAdmin.layout.layout') @section('title',"Manager") @section('page-name',"Managers") @section('page-detail',"All Managers Information") @section('pagelink', 'managers') @section('body')
| Manager Name | Employee ID | Department | Join Date | Status | Action |
|---|---|---|---|---|---|
|
@if (!empty($employee->image))
{{$employee->name}} |
{{$employee->employee_id}} | {{$employee->department->name ?? "N/A"}} | {{ $employee->created_at->format('m-d-y') }} | @if($employee->status === '2') Active @elseif($employee->status === '1') Inactive @else Pending @endif | {{-- --}} |