1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2024-11-24 20:02:35 +01:00
BookStack/app/Tag.php

19 lines
367 B
PHP
Raw Normal View History

2016-05-06 21:33:08 +02:00
<?php namespace BookStack;
/**
* Class Attribute
* @package BookStack
*/
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'];
2016-05-06 21:33:08 +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');
}
}