Edited read.blade.php
This commit is contained in:
parent
a840a4b2f0
commit
563f5ac694
|
@ -5,6 +5,27 @@
|
||||||
User - Read
|
User - Read
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@section("content")
|
@section("path")
|
||||||
|
<a href="" class="text-white">Vis Brugere</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>
|
||||||
|
</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>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
Loading…
Reference in New Issue