32 lines
528 B
PHP
32 lines
528 B
PHP
<!-- views/layout.blade.php -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>@yield('title')</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
<h1>Welcome to My Website</h1>
|
|
<nav>
|
|
<a href="/">Home</a>
|
|
<a href="/about">About</a>
|
|
<a href="/contact">Contact</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<div class="content">
|
|
@yield('content')
|
|
</div>
|
|
|
|
<footer>
|
|
<p>© 2025 My Website</p>
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html> |