@extends('layouts.app') @section('title', 'Employees') @section('content')
| Employee # | Name | Department | Position | Type | Rate/Salary | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $employee->employee_number }} |
{{ $employee->getFullName() }}
@if($employee->user)
{{ $employee->user->email }} @endif |
{{ $employee->department ?? 'N/A' }} | {{ $employee->position ?? 'N/A' }} | {{ ucfirst($employee->employment_type) }} | @if($employee->isSalaried()) LKR {{ number_format($employee->base_salary, 2) }}/mo @else LKR {{ number_format($employee->hourly_rate, 2) }}/hr @endif | {{ ucfirst($employee->status) }} | View @can('edit employees') Edit @endcan @can('delete employees') @if($employee->isActive()) @elseif($employee->status === 'terminated') @endif @endcan |
| No employees found | |||||||