@extends('layouts.app') @section('title','My Profile') @section('page-title','My Profile') @section('content')
{{ strtoupper(substr($employee->first_name,0,1).substr($employee->last_name,0,1)) }}
{{ $employee->full_name }}
{{ $employee->position }}
{{ ucfirst(str_replace('_',' ',$employee->status)) }}
Department
{{ $employee->department->name ?? '—' }}
Employee No.
{{ $employee->employee_number }}
Hired
{{ $employee->date_of_employment?->format('M j, Y') }}
@csrf @method('PUT')
Personal Information Contact HR to update name, department, or employment details
Emergency Contact
@endsection