phase 1 partie 3
This commit is contained in:
19
resources/views/layout.blade.php
Normal file
19
resources/views/layout.blade.php
Normal 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>
|
||||
Reference in New Issue
Block a user