2020-06-25 11:30:58 +00:00
|
|
|
@extends("admin.layout.base")
|
|
|
|
@extends("admin.layout.header")
|
|
|
|
|
|
|
|
@section("title")
|
2020-06-26 10:20:20 +00:00
|
|
|
Vaske Reservationer - Vis
|
2020-06-25 11:30:58 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("path")
|
2020-06-26 10:20:20 +00:00
|
|
|
<a href="{{ route('washing-reservations.index') }}" class="text-white">Vis Vaske Reservationer</a> /
|
2020-06-25 11:30:58 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section("content")
|
|
|
|
<table class="tbl">
|
|
|
|
<tr>
|
|
|
|
<th>Fornavn</th>
|
|
|
|
<th>Efternavn</th>
|
|
|
|
<th>Telefon Nr.</th>
|
|
|
|
<th>Vaskemaskine</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>
|
|
|
|
<th>Fornavn</th>
|
|
|
|
<th>Efternavn</th>
|
|
|
|
<th>Telefon Nr.</th>
|
|
|
|
<th>Vaskemaskine</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>
|
|
|
|
</table>
|
|
|
|
@endsection
|