2018-09-25 13:30:50 +02:00
|
|
|
<?php namespace BookStack\Actions;
|
|
|
|
|
|
|
|
use BookStack\Model;
|
2016-05-06 21:33:08 +02:00
|
|
|
|
2016-05-13 22:20:21 +02:00
|
|
|
class Tag extends Model
|
2016-05-06 21:33:08 +02:00
|
|
|
{
|
2016-05-13 00:12:05 +02:00
|
|
|
protected $fillable = ['name', 'value', 'order'];
|
2020-11-28 16:21:54 +01:00
|
|
|
protected $hidden = ['id', 'entity_id', 'entity_type', 'created_at', 'updated_at'];
|
2016-05-06 21:33:08 +02:00
|
|
|
|
|
|
|
/**
|
2016-05-13 22:20:21 +02:00
|
|
|
* Get the entity that this tag belongs to
|
2016-05-06 21:33:08 +02:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\MorphTo
|
|
|
|
*/
|
|
|
|
public function entity()
|
|
|
|
{
|
|
|
|
return $this->morphTo('entity');
|
|
|
|
}
|
2018-01-28 17:58:52 +01:00
|
|
|
}
|