@extends('layouts.app') @section('title', 'Kit Service | Employee Card') @section('content')

Total Employees

{{ $count ?? 'N/A' }}

Employee CDD

{{ $cdd ?? 'N/A' }}

Employee CDI

{{ $employeeesAllCdi ?? 'N/A' }}

Others

{{ $others ?? 'N/A' }}

Dashboard Employee Card

Employee Card

@foreach($employees as $employee)
@php $gender = strtolower($employee->gender); if ($gender === 'female') { $photoPath = 'assets/profil/female.png'; } elseif ($gender === 'male') { $photoPath = 'assets/profil/male.png'; } else { $photoPath = 'assets/profil/other.png'; } @endphp {{ $employee->first_name }}
@endforeach
@endsection