@extends('layouts.branch') @section('title', 'Employee Details - ' . $employee->full_name) @section('header', 'Employee Profile') @section('content')
@include('partials.branch._breadcrumbs', [ 'breadcrumbs' => [ ['name' => 'Employees', 'url' => route('branch.employees.index')], ['name' => $employee->full_name, 'url' => '#'] ] ])
Edit Profile

{{ config('app.name', 'Hospital Management System') }}

{{ $employee->branch->name }}

{{ $employee->branch->address_1 }}@if($employee->branch->address_2), {{ $employee->branch->address_2 }}@endif
{{ $employee->branch->city }}, {{ $employee->branch->state }} - {{ $employee->branch->zip }}

Employee Summary Card
{{ $employee->employee_id }}
@if($employee->photo) @else
@endif

Employee Status

Active Record

Designated Role

{{ $employee->role }}

Personal & Professional Info

Full Name {{ $employee->full_name }}
Staff Type {{ $employee->type }}
Email Address {{ $employee->email ?? 'Not Registered' }}
Date of Birth {{ $employee->dob?->format('d M, Y') ?? 'Not Provided' }}
Gender {{ $employee->gender ?? 'Not Specified' }}
Blood Group {{ $employee->blood_group ?? 'Not Known' }}
Emergency Contact {{ $employee->next_of_kin_phone ?? '---' }}
Permanent Address {{ $employee->permanent_address ?? '---' }}
Current Address {{ $employee->current_address ?? '---' }}

Duty & Shift Assignment

Shift Allocation {{ $employee->shift_type ?? 'Unassigned' }}
Weekly Off Day {{ $employee->weekly_off ?? 'Not Configured' }}
OT Eligibility {{ $employee->ot_eligibility ? 'Eligible' : 'Non-Eligible' }}

Bank & Financial Record

Bank Institution {{ $employee->bank_name ?? '---' }}
Account Number {{ $employee->bank_account_no ?? '---' }}
IFSC / Routing {{ $employee->bank_ifsc ?? '---' }}
Branch Location {{ $employee->bank_branch ?? '---' }}

Verified Verification Repository

@forelse($employee->documents as $doc)
{{ substr($doc->type, 0, 1) }}

{{ $doc->type }}

{{ $doc->number ?? 'No ID#' }}

@empty

No KYC documents have been uploaded for this employee

@endforelse

Generated on: {{ now()->format('d M, Y H:i') }}

Digitally Certified by: {{ $employee->branch->name }} Portal
@endsection