Ekapp/skolehjem/resources/views/admin/menuplan/read.blade.php

38 lines
1019 B
PHP
Raw Normal View History

2020-06-15 10:29:03 +00:00
@extends("admin.layout.base")
@extends("admin.layout.header")
@section("title")
User - Read
@endsection
@section("path")
<a href="" class="text-white">Vis Brugere</a> /
@endsection
@section("content")
<table class="tbl">
<tr>
<th>ID</th>
<th>Fredag</th>
<th>Tirsdag</th>
<th>Onsdag</th>
<th>Torsdag</th>
<th>Fredag</th>
<th>Lørdag</th>
<th>Søndag</th>
<th style="width: 1px;"><img class="w-100" src="{{ asset('/images/icons/pencil.svg') }}" alt="Update"></th>
</tr>
<tr>
<td>{ID}</td>
<td>{Fredag}</td>
<td>{Tirsdag}</td>
<td>{Onsdag}</td>
<td>{Torsdag}</td>
<td>{Fredag}</td>
<td>{Lørdag}</td>
<td>{Søndag}</td>
<td><a href=""><img class="w-100" src="{{ asset('/images/icons/pencil-dark.svg') }}" alt="Update"></a></td>
</tr>
</table>
@endsection