@extends('dashboard.layouts.master') @section('css') @endsection @section('title') شئون العاملين @endsection @section('content')

شئون العاملين

بيانات العاملين
{{-- داخل ملف index --}}
@include('dashboard.admin.reports.personnel_affairs.employee_data.filter.filter') {{-- باقي الفلاتر --}}
@isset($employees)
نتائج التقرير
@if($employees->count() > 0)
@foreach($employees as $emp) @endforeach
كود الموظف الاسم تاريخ التعيين المستوى الوظيفة القسم الإدارة جهة العمل مكان استلام المرتب
{{ $emp->code }} {{ $emp->name_ar }} {{ $emp->hiring_date?->format('Y-m-d') }} {{ $emp->level?->name ?? '-' }} {{ $emp->jobCategory?->name ?? '-' }} {{ $emp->section?->name ?? '-' }} {{ $emp->department?->name ?? '-' }} {{ $emp?->branch?->name ?? '-' }} {{ $emp?->salaryPlace?->name ?? '-' }}
@else

لا توجد بيانات مطابقة للفلتر المحدد.

@endif @endisset
@endsection @push('js') @endpush