34 lines
667 B
PHP
34 lines
667 B
PHP
<?php namespace Atash\Slider\Models;
|
|
|
|
use Model;
|
|
|
|
/**
|
|
* Model
|
|
*/
|
|
class StrukturaSentra extends Model
|
|
{
|
|
use \October\Rain\Database\Traits\Validation;
|
|
|
|
/*
|
|
* Disable timestamps by default.
|
|
* Remove this line if timestamps are defined in the database table.
|
|
*/
|
|
public $timestamps = false;
|
|
|
|
|
|
/**
|
|
* @var string The database table used by the model.
|
|
*/
|
|
public $table = 'atash_slider_struktura_sentra';
|
|
|
|
/**
|
|
* @var array Validation rules
|
|
*/
|
|
public $rules = [
|
|
];
|
|
|
|
public $implement = ['RainLab.Translate.Behaviors.TranslatableModel'];
|
|
|
|
public $translatable = ['name','position_held','phone'];
|
|
}
|