我想显示有关特定用户的数据库中的数据。
我有2个表:users
和tasks
。表users
是从php artisan make:auth
安装的。在表tasks
中,我有user_id
及其外键。
在控制器中,我有方法:
public function index(TaskRepository $taskRepo)
{
$tasks = $taskRepo->getAll();
return view('tasks.list', [
"taskList" => $tasks
]);
}
public function show(TaskRepository $taskRepo, $id)
{
$task = $taskRepo->find($id);
return view('tasks.show', [
"task" => $task
]);
}
我想获得有关创建getTaskByUserId
以及如何在视图中显示此信息的帮助。