@livewire('hr.employee-train-component' , ['component_name' => 'employee'])

{{ __('hr_messages.Add Employee') }}

@if (session()->has('message'))
{{ session('message') }}
@endif
*
*
*
*
*
*
*
work_place_id @foreach (\App\Models\WorkPlace::all() as $work) @endforeach
*
job_id @foreach (\App\Models\Job::where('is_official', null)->get() as $job) @endforeach
*
@foreach (\App\Models\Job::where('is_official', 1)->get() as $job) official_job_id @endforeach
*
department_id @foreach (\App\Models\Department::all() as $department) @endforeach
*
supervisor_id @foreach (\App\Models\Employee::all() as $emp) @endforeach