@extends('layouts.app') @section('content')
Dashboard Enfants de {{ $employee->first_name }} {{ $employee->last_name }}

Manage Children

@if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
{{ $errors->first() }}
@endif
@csrf
Back
@if($employee->child->isEmpty())

Aucun enfant enregistré.

@else @foreach($employee->child as $child) @endforeach
# Prénom Nom Date de naissance
{{ $child->id }} {{ $child->first_name }} {{ $child->last_name }} {{ $child->birthday ? \Carbon\Carbon::parse($child->birthday)->format('d/m/Y') : '—' }}
@endif
@endsection