n_oct/plugins/romanah/bagisto/models/Brand.php

28 lines
446 B
PHP
Executable File

<?php namespace Romanah\Bagisto\Models;
use Model;
/**
* Model
*/
class Brand extends Model
{
use \October\Rain\Database\Traits\Validation;
use \October\Rain\Database\Traits\SoftDelete;
protected $dates = ['deleted_at'];
/**
* @var string The database table used by the model.
*/
public $table = 'romanah_bagisto_brand';
/**
* @var array Validation rules
*/
public $rules = [
];
}