ilhan_ersoy Eğer yanlış anlamadıysam bu istediğiniz çok zor bir şey değil, hatta paket daha da karışık hale getirebilir:
@if($users->isNotEmpty())
<table>
<thead>
<tr>
<th>ID</th>
<th>Adı</th>
<th>Email</th>
<th>Oluş. Tarihi</th>
</tr>
</thead>
<tbody>
@foreach($users as $user)
<tr>
<td>{{ $user->id }}</td>
<td>{{ $user->name}}</td>
<td>{{ $user->email }}</td>
<td>{{ $user->created_at->format('d.m.Y H:i') }}</td>
</tr>
@endforeach
</tbody>
</table>
@endif