@extends('app') @section('page-title')

Employees

@endsection @push('head-script') @endpush @section('content')
user
user

{{ ucwords($employee->name) }}

{{ $employee->email }}
@lang('modules.employees.employeeId')

{{ ucwords($employee->employee_code) }}

@lang('modules.employees.fullName')

{{ ucwords($employee->name) }}

@lang('app.mobile')

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

DOB

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


@lang('app.email')

{{ $employee->email }}


@lang('app.designation')

{{ (!is_null($employee->designation) && !is_null($employee->designation)) ? ucwords($employee->designation->name) : '-' }}

@lang('app.department')

{{ (!is_null($employee->department) && !is_null($employee->department)) ? ucwords($employee->department->name) : '-' }}



{{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection @push('footer-script') @endpush