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