gurl_o/plugins/tps/birzha/models/ProductComments.php

28 lines
451 B
PHP
Raw Permalink Normal View History

2023-08-01 12:27:33 +00:00
<?php namespace TPS\Birzha\Models;
use Model;
/**
* Model
*/
class ProductComments 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 = 'tps_birzha_categories';
/**
* @var array Validation rules
*/
public $rules = [
];
}