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