次のようなコメントを作成すると:
$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」フィールドにも入力するにはどうすればよいですか?