Fixed Routes and blades.

This commit is contained in:
2020-06-22 14:53:00 +02:00
parent 9c3796220f
commit 3a345b1417
15 changed files with 82 additions and 47 deletions
@@ -20,8 +20,8 @@
<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>
@foreach($users as $user)
<tr>
@foreach($users as $user)
<td>{{ $user->id }}</td>
<td>{{ $user->name_first }}</td>
<td>{{ $user->name_last }}</td>
@@ -29,7 +29,9 @@
<td>{{ $user->phone }}</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>
@endforeach
</tr>
@endforeach
</table>
{{ $users->links() }}
@endsection