2016-05-07 03:33:08 +08:00
|
|
|
<?php namespace BookStack;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Attribute
|
|
|
|
* @package BookStack
|
|
|
|
*/
|
2016-05-14 04:20:21 +08:00
|
|
|
class Tag extends Model
|
2016-05-07 03:33:08 +08:00
|
|
|
{
|
2016-05-13 06:12:05 +08:00
|
|
|
protected $fillable = ['name', 'value', 'order'];
|
2016-05-07 03:33:08 +08:00
|
|
|
|
|
|
|
/**
|
2016-05-14 04:20:21 +08:00
|
|
|
* Get the entity that this tag belongs to
|
2016-05-07 03:33:08 +08:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\MorphTo
|
|
|
|
*/
|
|
|
|
public function entity()
|
|
|
|
{
|
|
|
|
return $this->morphTo('entity');
|
|
|
|
}
|
2018-01-29 00:58:52 +08:00
|
|
|
}
|