cineflex/resources/views/layout.blade.php

15 lines
293 B
PHP
Raw Normal View History

2022-11-23 09:32:34 +01:00
<!DOCTYPE html>
<html lang="en">
2022-11-23 09:32:34 +01:00
<head>
<meta charset="UTF-8">
<title>{{ isset($title) ? $title : 'Page' }} - {{ config('app.name', 'CineFlex') }} Manage</title>
2023-02-02 08:17:38 +01:00
<script src="{{asset('js/freq.js')}}"></script>
@stack('head')
2022-11-23 09:32:34 +01:00
</head>
<body>
@yield('body')
2022-11-23 09:32:34 +01:00
</body>
</html>