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