@extends('layout.main') @section('content')
@can('view-details-employee')
@if ($employee->user)

{{ $employee->user->username }}

@endif
{{ __('General Info') }}
@endcan @can('modify-details-employee')
{{ __('Basic Information') }}
@csrf
(Read Only)
{{--
--}}
@endcan @can('view-details-employee')
{{ __('General Setting') }}
@include('employee.general_setting.index')
{{ __('Assigned Immigration') }}
@include('employee.immigration.index')
{{ __('Emergency Contacts') }}
@include('employee.emergency_contacts.index')
{{ __('Social Profile') }}
@include('employee.social_profile.index')
{{ __('All Documents') }}
@include('employee.documents.index')
{{ __('All Qualifications') }}
@include('employee.qualifications.index')
{{ __('Work Experience') }}
@include('employee.work_experience.index')
{{ __('Bank Account') }}
@include('employee.bank_account.index')
{{ __('Profile Picture') }}
@include('employee.profile_picture.index')
{{ __('Salary Info') }}
@include('employee.salary.index')
{{ __('Leave Info') }}
@include('employee.leave.index')
{{ __('Core HR') }}
@include('employee.core_hr.award.index')
{{ trans('file.Project') }} & {{ trans('file.Task') }}
@include('employee.project_task.index')
{{ trans('file.Payslip') }}
@include('employee.payslip.index')
@endcan
@endsection @push('scripts') @endpush