2020-06-25 07:04:23 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Menuplan - Vis
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("path")
|
2020-06-25 08:34:10 +00:00
|
|
|
<a href="{{ route('menu-plans.index') }}" class="text-white">Vis Menuplan</a> /
|
2020-06-25 07:04:23 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
|
|
|
<table class="tbl">
|
|
|
|
<tr>
|
|
|
|
<th>Mandag</th>
|
|
|
|
<th>Tirsdag</th>
|
|
|
|
<th>Onsdag</th>
|
|
|
|
<th>Torsdag</th>
|
2020-06-25 12:52:04 +00:00
|
|
|
<th style="width: 1em;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
|
|
|
|
<th style="width: 1em;"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
|
2020-06-25 07:04:23 +00:00
|
|
|
</tr>
|
2020-06-25 13:29:43 +00:00
|
|
|
@foreach($menuPlans as $menuplan)
|
2020-06-25 07:04:23 +00:00
|
|
|
<tr>
|
2020-06-26 11:17:18 +00:00
|
|
|
<td>{{$menuplan->monday}}</td>
|
|
|
|
<td>{{$menuplan->tuesday}}</td>
|
|
|
|
<td>{{$menuplan->wednesday}}</td>
|
|
|
|
<td>{{$menuplan->thursday}}</td>
|
2020-06-29 06:43:35 +00:00
|
|
|
<td><a href="{{ route("menu-plans.edit", [ "menu_plan" => $menuplan ]) }}"><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
|
2020-06-29 11:18:58 +00:00
|
|
|
<td><a href="{{ route("menu-plans.destroy", [ "menu_plan" => $menuplan ]) }}"><img class="w-100" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></a></td>
|
2020-06-25 07:04:23 +00:00
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
|
2020-06-25 13:29:43 +00:00
|
|
|
{{ $menuPlans->links() }}
|
2020-06-25 07:04:23 +00:00
|
|
|
@endsection
|