3 namespace BookStack\Search;
5 use BookStack\App\Model;
7 class SearchTerm extends Model
9 protected $fillable = ['term', 'entity_id', 'entity_type', 'score'];
10 public $timestamps = false;
13 * Get the entity that this term belongs to.
15 * @return \Illuminate\Database\Eloquent\Relations\MorphTo
17 public function entity()
19 return $this->morphTo('entity');