在我的laravel应用程序中,我有如下任务表,
id task_name project_id
1 aaa 1
2 hjhkj 2
3 jhghg 1
项目表如下,
id name
1 abc
2 xyz
任务模型与项目模型的关系是
public function project()
{
return $this->belongsTo('App\Project');
}
我正在使用show.blade.php
中的任务表打印一些数据{{$tasks->project_id}}
{{$tasks->task_name}}
实际上现在我也需要打印项目名称,怎么做呢?
答案 0 :(得分:1)
尝试
{{ $tasks->project->name }}