@extends('layouts.app') @section('title', 'Kit Service | Employee Card') @section('content')
@include('employees.partial.header')
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