Files
Test-Laravel-Eloquent-Basics/resources/views/users/index.blade.php
T
2021-11-16 07:57:23 +02:00

17 lines
324 B
PHP

<table>
<thead>
<tr>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
@foreach ($users as $user)
<tr>
<td>{{ $loop->iteration }}. {{ $user->name }}</td>
<td>{{ $user->email }}</td>
</tr>
@endforeach
</tbody>
</table>