@extends('admin.layouts.master') @section('title', 'Employee Details') @section('content') @component('components.breadcrumb') @slot('li_1') Employee @endslot @slot('title') Employee Details @endslot @endcomponent
Back to List
Profile Image

{{ $employee->user->first_name ?? '' }} {{ $employee->user->middle_name ?? '' }} {{ $employee->user->last_name ?? '' }}

{{ $employee->user->email ?? '' }}

{{ $employee->user->phone ?? '' }}

{{ $employee->experience ?? '' }}

{{ number_format($employee->ctc) ?? '' }}

{{ number_format($employee->ectc) ?? '' }}

{{ $employee->notice_period ?? 'NA' }}

{{ $employee->education ?? 'NA' }}

{{ $employee->desired_job_type ?? 'NA' }}

{{ $employee->preferred_shift ?? 'NA' }}

{{ $employee->language ?? 'NA' }}

{{ ucfirst($employee->user->gender ?? '' ) }}

{{ $employee->user->address->street ?? 'N/A' }}, {{ $employee->user->address->city ?? 'N/A' }}, {{ $employee->user->address->state->name ?? 'N/A' }}, {{ $employee->user->address->country->name ?? 'N/A' }} - {{ $employee->user->address->postal_code ?? 'N/A' }}

{{ date('d-M-Y', strtotime($employee->created_at)) ?? 'NA' }}

@if ($employee->cv)

Download Resume

@else

No data added yet

@endif
@if ($employee->user->socialLinks->isNotEmpty())
    @foreach ($employee->user->socialLinks as $link)
  • {{ ucfirst($link->platform) }}: {{ $link->url }}
  • @endforeach
@else

No Social Links added yet

@endif
@if ($employee->licences->isNotEmpty())
    @foreach ($employee->licences as $license)
  • {{ $license->licence->name ?? 'N/A' }} @if ($license->noExpiry) (No Expiration) @elseif($license->expire_month && $license->expire_year) (Expires: {{ str_pad($license->expire_month, 2, '0', STR_PAD_LEFT) }}/{{ $license->expire_year }}) @endif
  • @endforeach
@else

No data added yet

@endif
@if ($employee->certifications->isNotEmpty())
    @foreach ($employee->certifications as $cert)
  • {{ $cert->certification->name ?? 'N/A' }} @if ($cert->noExpiry) (No Expiration) @elseif($cert->expire_month && $cert->expire_year) (Expires: {{ str_pad($cert->expire_month, 2, '0', STR_PAD_LEFT) }}/{{ $cert->expire_year }}) @endif
  • @endforeach
@else

No data added yet

@endif
@endsection