belongsTo('App\User', 'thread_creator_id'); } /** * Get the tags for the thread. */ public function tags() { return $this->belongsToMany('App\Tag'); } /** * Get the posts for the thread. */ public function posts() { return $this->hasMany('App\Post'); } }