cineflex/resources/views/layout.blade.php

13 lines
241 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ isset($title) ? $title : 'Page' }} - {{ config('app.name', 'CineFlex') }} Manage</title>
@stack('head')
</head>
<body>
@yield('body')
</body>
</html>