sapalymahabat/plugins/akami/coffe30/models/Slider.php

35 lines
683 B
PHP

<?php namespace Akami\Coffe30\Models;
use Model;
/**
* Model
*/
class Slider extends Model
{
use \October\Rain\Database\Traits\Validation;
public $implement = ['@RainLab.Translate.Behaviors.TranslatableModel'];
/*
* 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 = 'akami_coffe30_slider';
public $translatable = [
'img',
];
/**
* @var array Validation rules
*/
public $rules = [
];
}