如果我创建这样的评论:
$post->comments()->create(array('body' => 'Comment message'));
我的帖子上有模型:
public function comments()
{
return $this->morphMany('Comment', 'shared_comments');
}
它填充了帖子和评论之间的多态关系字段。
我的评论中也有模型:
public function author()
{
return $this->belongsTo('User');
}
如何填写评论表中的“user_id”字段?