要显示来自Laravel控制器的列表数据,你可以按照以下步骤进行操作:
use App\Models\User;
public function userList()
{
$users = User::all();
return view('user.list', ['users' => $users]);
}
list.blade.php
的视图文件,并使用以下代码来显示用户列表数据:<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Email</th>
</tr>
</thead>
<tbody>
@foreach($users as $user)
<tr>
<td>{{ $user->id }}</td>
<td>{{ $user->name }}</td>
<td>{{ $user->email }}</td>
</tr>
@endforeach
</tbody>
</table>
web.php
文件中添加以下代码:Route::get('/users', [UserController::class, 'userList']);
这样,当你访问/users
路径时,Laravel将调用UserController
的userList
方法,并将列表数据传递给list.blade.php
视图文件进行显示。
以上是一个基本的示例,你可以根据实际需求进行修改和扩展。如果你想了解更多关于Laravel的知识和使用方法,可以参考Laravel官方文档。
领取专属 10元无门槛券
手把手带您无忧上云