2017-09-13 19:02:20 +02:00

33 lines
1018 B
PHP

<html>
<head lang="{{ config('app.locale') }}">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="/css/app.css" rel="stylesheet" type="text/css" media="screen,projection">
<title>@yield('title') - Gastro</title>
</head>
<body>
<header>
@include('shared.navbar')
@stack('modals')
@include('shared.modals.confirmLogout', [])
</header>
<main id="content" class="container">
@yield('content')
@if(isset($fabActions) && count($fabActions) > 0)
@include('shared.fab')
@endif
</main>
@section('footer')
@show
<script type="text/javascript" src="/js/app.js"></script>
@stack('scripts')
</body>
</html>