@extends('admin.layouts.master') @section('title', 'Employee Details') @section('content') @component('components.breadcrumb') @slot('li_1') Employee @endslot @slot('title') Employee Details @endslot @endcomponent
Employee Details
User Name {{ $employee->user->username ?? '' }}
Full Name {{ $employee->user->first_name ?? '' }} {{ $employee->user->middle_name ?? '' }} {{ $employee->user->last_name ?? '' }}
Email {{ $employee->user->email ?? '' }}
Phone {{ $employee->user->phone ?? '' }}
experience {{ $employee->experience ?? '' }}
CTC {{ number_format($employee->ctc) ?? '' }}
ECTC {{ number_format($employee->ectc) ?? '' }}
Notice Period {{ $employee->notice_period ?? 'NA' }}
Education {{ $employee->education ?? 'NA' }}
Desired Job Type {{ $employee->desired_job_type ?? 'NA' }}
Preferred Shift {{ $employee->preferred_shift ?? 'NA' }}
Preferred Work Location {{ $employee->preferred_work_location ?? 'NA' }}
Language {{ $employee->language ?? 'NA' }}
CV {{ $employee->cv ?? 'NA' }}
Gender {{ ucfirst($employee->user->gender ?? '' ) }}
Address {{ $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 {{ date('d-M-Y', strtotime($employee->created_at)) ?? 'NA' }}
Back to List
@endsection