答案 0 :(得分:1)
您需要定义以下关系:
class Part extends Model
{
public function cards()
{
return $this->belongsToMany('App\Cards', 'user_cards');
}
}
然后你可以获取以下部分的所有卡片:
$cards = Part::with('cards')->find($part_id);
答案 1 :(得分:0)
shrink_factor = ifelse(T.gt(norm_gparams,max_grad_norm),(max_grad_norm/norm_gparams).astype('float32'),1.)
对于Part.php
,您的模型关系应该包含这样的内容Part::whereHas('cards', function($query) use ($cardId){
$query->where('id', $cardId);
})->get();
对于Card.php
public function cards(){
return $this->belongsToMany('App\Card');
}