belongsTo('App\Models\ForumCategory', 'category_id'); } public function thread() { return $this->belongsTo('App\Models\ForumThread', 'thread_id'); } public function user() { return $this->belongsTo('App\Models\User', 'user_id'); } }