BookStack/app/Attribute.php

19 lines
370 B
PHP
Raw Normal View History

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