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