(Maybe) Fixed Menuplans

This commit is contained in:
Anders 2020-06-25 13:01:53 +02:00
parent 5b85da54f2
commit 103dfa6830
4 changed files with 7 additions and 26 deletions

View File

@ -6,7 +6,7 @@
@endsection
@section("path")
<a href="{{ route('menuplans.delete') }}" class="text-white">Fjern Menuplan</a> /
<a href="{{ route('menu-plans.delete') }}" class="text-white">Fjern Menuplan</a> /
@endsection
@section("content")

View File

@ -6,7 +6,7 @@
@endsection
@section("path")
<a href="{{ route('menuplans.edit') }}" class="text-white">Rediger Menuplan</a> /
<a href="{{ route('menu-plans.edit') }}" class="text-white">Rediger Menuplan</a> /
@endsection
@section("content")

View File

@ -2,11 +2,11 @@
@extends("admin.layout.header")
@section("title")
Menuplan - Read
Menuplan - Vis
@endsection
@section("path")
<a href="{{ route('menuplans.show') }}" class="text-white">Vis Menuplan</a> /
<a href="{{ route('menu-plans.show') }}" class="text-white">Vis Menuplan</a> /
@endsection
@section("content")

View File

@ -2,32 +2,13 @@
@extends("admin.layout.header")
@section("title")
Vaskemaskiner - Vis
Vaskemaskiner - Opret
@endsection
@section("path")
<a href="" class="text-white">Vis Vaskemaskiner</a> /
<a href="" class="text-white">Opret Vaskemaskiner</a> /
@endsection
@section("content")
<table class="tbl">
<tr>
<th>ID</th>
<th>Fornavn</th>
<th>Efternavn</th>
<th>Email</th>
<th>Tlf nr</th>
<th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
<th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/trashcan.svg') }}" alt="Delete"></th>
</tr>
<tr>
<td>{ID}</td>
<td>{Fornavn}</td>
<td>{Efternavn}</td>
<td>{Email}</td>
<td>{TLF}</td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/trashcan-dark.svg') }}" alt="Delete"></a></td>
</tr>
</table>
Vaskemaskinen blev (ikke) oprettet.
@endsection