mirror of
https://github.com/10h30/Test-Laravel-Eloquent-Basics.git
synced 2026-07-11 19:05:53 +09:00
17 lines
324 B
PHP
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>
|