etalon_backend/plugins/atash/slider/models/InformasiyaObUslugah.php

34 lines
715 B
PHP

<?php namespace Atash\Slider\Models;
use Model;
/**
* Model
*/
class InformasiyaObUslugah 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_informasiya_ob_uslugah';
/**
* @var array Validation rules
*/
public $rules = [
];
public $implement = ['RainLab.Translate.Behaviors.TranslatableModel'];
public $translatable = ['kind_of_activity','documents_for_employers','order','cost_of_work'];
}