BookStack/app/Attribute.php
2016-05-12 23:12:05 +01:00

19 lines
379 B
PHP

<?php namespace BookStack;
/**
* Class Attribute
* @package BookStack
*/
class Attribute extends Model
{
protected $fillable = ['name', 'value', 'order'];
/**
* Get the entity that this attribute belongs to
* @return \Illuminate\Database\Eloquent\Relations\MorphTo
*/
public function entity()
{
return $this->morphTo('entity');
}
}