File: /var/www/vhosts/greenclinic.kz/test.greenclinic.kz/plugins/sanya/freelanse/models/PricePage.php
<?php namespace Sanya\Freelanse\Models;
use Model;
/**
* Model
*/
class PricePage 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;
public $implement = ['RainLab.Translate.Behaviors.TranslatableModel'];
public $translatable = ['title', 'main_repeater','price_file', 'seo_title','seo_keywords','seo_description'];
/**
* @var string The database table used by the model.
*/
public $table = 'sanya_freelanse_price_page';
protected $jsonable = ['main_repeater'];
/**
* @var array Validation rules
*/
public $rules = [
];
}