53bcfe528d
Made some tweaks to related content and other examples while there.
18 lines
437 B
PHP
18 lines
437 B
PHP
<?php namespace BookStack\Actions;
|
|
|
|
use BookStack\Model;
|
|
|
|
class Tag extends Model
|
|
{
|
|
protected $fillable = ['name', 'value', 'order'];
|
|
protected $hidden = ['id', 'entity_id', 'entity_type', 'created_at', 'updated_at'];
|
|
|
|
/**
|
|
* Get the entity that this tag belongs to
|
|
* @return \Illuminate\Database\Eloquent\Relations\MorphTo
|
|
*/
|
|
public function entity()
|
|
{
|
|
return $this->morphTo('entity');
|
|
}
|
|
}
|