@extends('layouts.portal') @section('header_title', 'Employee Directory') @section('content')
Manage and oversee your team members.
| Employee | Role & Dept | Joined | Status | Actions |
|---|---|---|---|---|
|
{{ $employee->name }} {{ $employee->email }} |
{{ strtoupper(str_replace('_', ' ', $employee->role)) }}
{{ $employee->department->name ?? 'Portal Core' }} |
{{ $employee->joining_date ? $employee->joining_date->format('M d, Y') : 'N/A' }} Arrived {{ $employee->joining_date ? $employee->joining_date->diffForHumans() : '' }} |
@if($employee->active_status) Active @else Inactive @endif |