询问如何在刀片Laravel中显示数据透视表中的数据

时间:2019-02-09 15:16:05

标签: laravel laravel-5

我很困惑。我想在刀片中的表上显示所有带有用户名的贷款数据。这是我的困惑:

我要在刀片中显示此表:

This Table I want to display

这是我使用的表格:

This is the table that i use

我的模特用户:

else if((result1 != null) && (string.IsNullOrEmpty(result2)))

这本我的书的模型:

public function book(){
    return $this->belongsToMany(Book::class, 'loans')->withPivot(['loan_date','status'])->withTimeStamps();
}

1 个答案:

答案 0 :(得分:0)

要从任何模型访问数据透视表,只需像这样调用它:

@foreach($users as $user)
  {{ $user->books->pivot->status}}
@endforeach