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