@extends('layouts.dashboard') @section('title', $staff->user->name ?? 'Staff Details') @section('page-content')
{{ $staff->position ?? $staff->staff_type }}
{{ $staff->staff_id }}
{{ $staff->user->email }}
{{ $staff->user->phone ?? 'N/A' }}
{{ $staff->department->name ?? 'N/A' }}
{{ str_replace('_', ' ', $staff->staff_type) }}
{{ $staff->position ?? 'N/A' }}
{{ $staff->rank ?? 'N/A' }}
{{ str_replace('_', ' ', $staff->employment_type) }}
{{ $staff->hire_date ? $staff->hire_date->format('M d, Y') : 'N/A' }}
{{ $staff->office_location ?? 'N/A' }}
{{ $staff->office_phone ?? 'N/A' }}
{{ $qualification->field_of_study }}
{{ $qualification->institution }} • {{ $qualification->year_obtained }}
| Start Date | End Date | Position | Salary | Status |
|---|---|---|---|---|
| {{ $contract->start_date ? $contract->start_date->format('M d, Y') : 'N/A' }} | {{ $contract->end_date ? $contract->end_date->format('M d, Y') : 'N/A' }} | {{ $contract->position ?? 'N/A' }} | ${{ number_format($contract->salary, 2) }} | {{ ucfirst($contract->status) }} |
{{ $staff->bio }}
{{ $staff->research_interests }}