@push('title') Employment Module @endpush
@if (session('success')) @endif @if (session('info')) @endif @if (session('warning')) @endif @if (session('danger')) @endif
Employments ( {{count($employee) }} )
Reset
@forelse($employee as $emp) @empty @endforelse
ID Employee No Name Site Reporter Probation Status Action
{{ $emp->id }} {{ $emp->employee_id_no }} {{ $emp->title }} {{ $emp->name_with_initials }} {{ $emp->latestEmployment ? $emp->latestEmployment?->site?->name : "N/A" }} {{ $emp->latestEmployment?->reporter?->name ?? 'N/A' }} {{ $emp->latestEmployment?->is_probation == 1 ? $emp->latestEmployment?->probation_period_months . " (Months)" : 'Permenet' }} {{ ucfirst($emp->employee_status) }} @can('update_employee_management') @endcan
No employments found.
{{ $employee->appends(request()->query())->links() }}