ORIENT/plugins/tps/tps/models/Afisha.php

32 lines
518 B
PHP

<?php namespace Tps\Tps\Models;
use Model;
/**
* Model
*/
class Afisha extends Model
{
use \October\Rain\Database\Traits\Validation;
public $implement = ['@RainLab.Translate.Behaviors.TranslatableModel'];
public $translatable = [
'name',
'description',
'addr',
];
/**
* @var string The database table used by the model.
*/
public $table = 'tps_tps_afisha';
/**
* @var array Validation rules
*/
public $rules = [
];
}