1 <?php namespace BookStack;
3 class SearchTerm extends Model
6 protected $fillable = ['term', 'entity_id', 'entity_type', 'score'];
7 public $timestamps = false;
10 * Get the entity that this term belongs to
11 * @return \Illuminate\Database\Eloquent\Relations\MorphTo
13 public function entity()
15 return $this->morphTo('entity');