@extends('layouts.app') @section('title', 'Employee Details') @section('subtitle', 'View employee information and records') @section('content')
{{ $employee->position }}
ID: {{ $employee->employee_id }}
No profile image uploaded
Upload image{{ $employee->email }}
{{ $employee->phone ?? 'Not provided' }}
{{ $employee->address ?? 'Not provided' }}
{{ $employee->department->name ?? 'Not assigned' }}
{{ $employee->shift->name ?? 'Not assigned' }}
{{ $employee->position }}
{{ $employee->salary ? 'TZS ' . number_format($employee->salary, 2) : 'Not set' }}
{{ $employee->hire_date ? $employee->hire_date->format('M d, Y') : 'Not set' }}
{{ $employee->termination_date ? $employee->termination_date->format('M d, Y') : 'N/A' }}
{{ $employee->emergency_contact_name ?? 'Not provided' }}
{{ $employee->emergency_contact_phone ?? 'Not provided' }}
No roles assigned
@endif