2020-06-15 06:56:21 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<title>@yield("title")</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ mix("/css/admin.css") }}">
|
2020-07-28 07:23:28 +00:00
|
|
|
<script src="http://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
|
2020-06-15 06:56:21 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
@yield("header")
|
|
|
|
<main class="row">
|
|
|
|
<div class="col nav" style="background-color: #333333;">
|
|
|
|
<div class="segment">
|
2020-07-01 07:27:18 +00:00
|
|
|
<h3 class="text-white"><a href="{{ route('users.index') }}" class="text-white">Brugere</a></h3>
|
2020-06-15 06:56:21 +00:00
|
|
|
</div>
|
2020-06-30 09:49:17 +00:00
|
|
|
<div class="segment">
|
2020-07-01 07:27:18 +00:00
|
|
|
<h3 class="text-white"><a href="{{ route("roles.index") }}" class="text-white">Roller</a></h3>
|
2020-06-30 09:49:17 +00:00
|
|
|
</div>
|
2020-06-15 06:56:21 +00:00
|
|
|
<div class="segment">
|
2020-07-01 07:27:18 +00:00
|
|
|
<h3 class="text-white"><a href="{{ route("menu-plans.index")}}" class="text-white">Menuplan</a></h3>
|
2020-06-15 06:56:21 +00:00
|
|
|
</div>
|
2020-06-29 08:56:53 +00:00
|
|
|
<div class="segment">
|
2020-07-01 07:27:18 +00:00
|
|
|
<h3 class="text-white"><a href="{{ route("events.index") }}" class="text-white">Aktiviteter</a></h3>
|
2020-06-29 08:56:53 +00:00
|
|
|
</div>
|
2020-06-24 12:19:55 +00:00
|
|
|
<div class="segment">
|
2020-07-01 07:27:18 +00:00
|
|
|
<h3 class="text-white"><a href="{{ route("washing-machines.index") }}" class="text-white">Vaskemaskiner</a></h3>
|
2020-06-24 12:19:55 +00:00
|
|
|
</div>
|
2020-06-29 08:14:47 +00:00
|
|
|
<div class="segment">
|
2020-07-01 07:27:18 +00:00
|
|
|
<h3 class="text-white"><a href="{{ route("washing-reservations.index") }}" class="text-white">Vaskemaskiner Reservationer</a></h3>
|
|
|
|
</div>
|
|
|
|
<div class="segment">
|
|
|
|
<h3 class="text-white"><a href="{{ route("external-links.index") }}" class="text-white">Eksterne Links</a></h3>
|
2020-06-29 08:12:58 +00:00
|
|
|
</div>
|
2020-06-29 12:49:57 +00:00
|
|
|
{{-- <div class="segment">--}}
|
2020-07-01 07:27:18 +00:00
|
|
|
{{-- <h3 class="text-white"><a href="{{ route('staff.index') }}" class="text-white">Personale</a></h3>--}}
|
2020-06-29 12:49:57 +00:00
|
|
|
{{-- </div>--}}
|
2020-06-30 09:38:28 +00:00
|
|
|
<div class="segment">
|
2020-07-01 07:27:18 +00:00
|
|
|
<h3 class="text-white"><a href="{{ route("contacts.index") }}" class="text-white">Kontakter</a></h3>
|
2020-06-30 09:38:28 +00:00
|
|
|
</div>
|
2020-06-29 10:56:08 +00:00
|
|
|
<div class="segment">
|
2020-07-01 07:27:18 +00:00
|
|
|
<h3 class="text-white"><a href="{{ route('feedbacks.index') }}" class="text-white">Feedback</a></h3>
|
2020-06-29 08:14:47 +00:00
|
|
|
</div>
|
2020-06-15 06:56:21 +00:00
|
|
|
</div>
|
|
|
|
<div class="w-85" style="background-color: #cccccc;">
|
|
|
|
<div class="directorypath text-white">
|
2020-06-17 09:28:48 +00:00
|
|
|
<a href="{{ route('root.index') }}" class="text-white">Home</a> / @yield("path")
|
2020-06-15 06:56:21 +00:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
@yield("content")
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<script src="{{ mix("/js/app.js") }}"></script>
|
|
|
|
@yield("scripts")
|
|
|
|
</body>
|
|
|
|
</html>
|