ORIENT/plugins/rainlab/translate/models/Attribute.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' => []
];
}