2020-06-16 07:06:45 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
|
|
|
Vaskemaskiner - Vis
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("path")
|
2020-06-24 12:19:55 +00:00
|
|
|
<a href="{{ route('washing-machines.index') }}" class="text-white">Vis Vaskemaskiner</a> /
|
2020-06-16 07:06:45 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
|
|
|
<table class="tbl">
|
|
|
|
<tr>
|
|
|
|
<th>ID</th>
|
2020-06-24 12:19:55 +00:00
|
|
|
<th>Navn</th>
|
2020-06-16 07:06:45 +00:00
|
|
|
<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>
|
2020-06-24 12:19:55 +00:00
|
|
|
<td>{Navn}</td>
|
2020-06-16 07:06:45 +00:00
|
|
|
<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>
|
|
|
|
@endsection
|