 }})
@if($employee->first_name && $employee->last_name)
@if ($department || $desgination)
{{ $employee->first_name }} {{ $employee->middle_name }} {{ $employee->last_name }}
{{ $employee->contact }} {{ $employee->email }}
{{ $department }}{{ $department && $desgination ? ', ' : '' }}{{ $desgination }}
@endif @if($employee->temporary_address || $employee->permanent_address)
@if($employee->temporary_address)
@endif
@endif
{{ $employee->temporary_address }}
@endif
@if($employee->permanent_address)
{{ $employee->permanent_address }}
@endif
Basic Info
Full Name:
{{ $employee->full_name }}
DOB:
{{ $employee->dob }}
Role:
@if ($employee->user)
{{ optional($employee->user)->getRoleNames()->first() }}
@endif
Leave Remaining
Leave Type | Total | Remain | ||||
---|---|---|---|---|---|---|
{{ $leave['leave_type'] ?: 'N/A' }} | {{ $leave['total'] }} | {{ $leave['remain'] }} | ||||
No Leave Found |
About
{{ $employee->remarks }}
Join Date :
{{ $employee->join_date ?? 'N/A' }}
Designation :
{{ $desgination ?? 'N/A' }}
Department :
{{ $department ?? 'N/A' }}
Activity
@include('employee::partials.leave')
@include('employee::partials.attendance')