phase 1 partie 3

This commit is contained in:
2025-11-17 15:43:12 +01:00
parent 2300847c58
commit cf75d78792
8 changed files with 76 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Gestion Clients</title>
</head>
<body>
<nav>
<a href="{{ url('/') }}">Accueil</a>
<a href="{{ url('/clients') }}">Liste des clients</a>
</nav>
<div>
@yield('content'){{-- contenu des autres vues ici --}}
</div>
</body>
</html>