不确定为什么它现在适合我。
我有两张桌子
events
- id
selections
- id
- event_id
从我的Event
模型我想要关系选择
class Event extends Model
{
...
public function selections()
{
return $this->belongsTo(Selection::class, 'event_id', 'id');
}
}
我的问题是$event->selections
关系不起作用。继续获得null
。
答案 0 :(得分:2)
使用数据库架构,它改为hasMany关系。
public function selections()
{
return $this->hasMany(Selection::class, 'event_id', 'id');
}
请参阅文档中的One to many relationship。