@php use Illuminate\Support\Carbon; @endphp @extends('layouts.app') @section('title', 'Kit Service | Payroll List') @section('content')

Liste des employés - Paie

➕ Nouveau Employé
@foreach($employees as $employee) @php $gender = strtolower($employee->gender); $photoPath = $gender === 'female' ? 'assets/profil/female.png' : ($gender === 'male' ? 'assets/profil/male.png' : 'assets/profil/other.png'); @endphp @endforeach
Photo Matricule Nom complet Département Fonction Echelon Niveau Action
photo {{ $employee->employee_id }} {{ $employee->first_name }} {{ $employee->last_name }} {{ $employee->department ?? '—' }} {{ $employee->function ?? '—' }} {{ $employee->echelon ?? '—' }} {{ $employee->niveau ?? '—' }}
@endsection