30 lines
503 B
PHP
Executable File
30 lines
503 B
PHP
Executable File
<?php namespace Akami\Tps\Models;
|
|
|
|
use Model;
|
|
|
|
/**
|
|
* Model
|
|
*/
|
|
class Slider extends Model
|
|
{
|
|
use \October\Rain\Database\Traits\Validation;
|
|
|
|
|
|
/**
|
|
* @var string The database table used by the model.
|
|
*/
|
|
public $table = 'akami_tps_slider';
|
|
|
|
public $implement = [
|
|
'@RainLab.Translate.Behaviors.TranslatableModel',
|
|
];
|
|
|
|
public $translatable = ['header', 'txt', 'btn_txt'];
|
|
|
|
/**
|
|
* @var array Validation rules
|
|
*/
|
|
public $rules = [
|
|
];
|
|
}
|