BookStack/app/Actions/Tag.php

19 lines
437 B
PHP
Raw Normal View History

<?php namespace BookStack\Actions;
use BookStack\Model;
2016-05-06 19:33:08 +00:00
class Tag extends Model
2016-05-06 19:33:08 +00:00
{
2016-05-12 22:12:05 +00:00
protected $fillable = ['name', 'value', 'order'];
protected $hidden = ['id', 'entity_id', 'entity_type', 'created_at', 'updated_at'];
2016-05-06 19:33:08 +00:00
/**
* Get the entity that this tag belongs to
2016-05-06 19:33:08 +00:00
* @return \Illuminate\Database\Eloquent\Relations\MorphTo
*/
public function entity()
{
return $this->morphTo('entity');
}
}