{{ __('Employee Details') }}

Back to Dashboard

{{ $employee->first_name }} {{ $employee->last_name }}

{{ $employee->email }}

Status: {{ ucfirst($employee->status) }}
Member since: {{ $employee->created_at->format('M d, Y') }}
@if($employee->status === 'terminated')
Terminated on: {{ $employee->terminated_at->format('M d, Y') }}
@if($employee->transitioned_to_consumer)
Transitioned to Consumer Plan
@endif @if($employee->termination_reason)

Termination reason:

{{ $employee->termination_reason }}

@endif @endif
@if($employee->status !== 'terminated') @endif
@if($employee->status === 'pending')

Pending Employee

This employee has not yet activated their account.

@endif

Activity History

@if($employee->status === 'terminated') @endif
Date Action Details
{{ $employee->created_at->format('M d, Y') }} Account Created Employee was added to the system
{{ $employee->terminated_at->format('M d, Y') }} Account Terminated @if($employee->transitioned_to_consumer) Transitioned to consumer plan @else Employee access revoked @endif