19 lines
295 B
PHP
19 lines
295 B
PHP
|
|
<?php namespace RainLab\Translate\Models;
|
||
|
|
|
||
|
|
use Model;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Attribute Model
|
||
|
|
*/
|
||
|
|
class Attribute extends Model
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @var string The database table used by the model.
|
||
|
|
*/
|
||
|
|
public $table = 'rainlab_translate_attributes';
|
||
|
|
|
||
|
|
public $morphTo = [
|
||
|
|
'model' => []
|
||
|
|
];
|
||
|
|
}
|