1 <?php namespace BookStack;
7 class Tag extends Model
9 protected $fillable = ['name', 'value', 'order'];
12 * Get the entity that this tag belongs to
13 * @return \Illuminate\Database\Eloquent\Relations\MorphTo
15 public function entity()
17 return $this->morphTo('entity');