RehabilitationBack/resources/views/admin_layout.blade.php
Михаил 0e8d876e0d Upload
2025-06-05 12:33:37 +03:00

16 lines
493 B
PHP

<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>@yield('title')</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet">
@yield('head')
</head>
<body>
@yield('main_view')
@yield('script')
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>