@extends('layouts.branch') @section('title', 'Employee Details - ' . $employee->full_name) @section('header', 'Employee Profile') @section('content')
{{ $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 Status
Designated Role
{{ $employee->role }}
| 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 ?? '---' }} |
| Shift Allocation | {{ $employee->shift_type ?? 'Unassigned' }} |
| Weekly Off Day | {{ $employee->weekly_off ?? 'Not Configured' }} |
| OT Eligibility | {{ $employee->ot_eligibility ? 'Eligible' : 'Non-Eligible' }} |
| Bank Institution | {{ $employee->bank_name ?? '---' }} |
| Account Number | {{ $employee->bank_account_no ?? '---' }} |
| IFSC / Routing | {{ $employee->bank_ifsc ?? '---' }} |
| Branch Location | {{ $employee->bank_branch ?? '---' }} |
Generated on: {{ now()->format('d M, Y H:i') }}