@extends('layouts.app') @section('content')
{{ $company->name }} - Manage your workforce
| Employee | Department | Position | Employment Type | Hire Date | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $employee->full_name }}
@if($employee->user_id)
@endif
{{ $employee->employee_id }} {{ $employee->email }} |
{{ $employee->department }} | {{ $employee->position }} | {{ ucwords(str_replace('_', ' ', $employee->employment_type)) }} | {{ $employee->hire_date->format('M d, Y') }} | @if($employee->status === 'active') Active @elseif($employee->status === 'inactive') Inactive @else Terminated @endif |
Get started by adding your first employee.
@can('manage-employees', $company) Add First Employee @endcan