Berkarar/plugins/tps/shops/models/Notification.php

28 lines
448 B
PHP

<?php namespace Tps\Shops\Models;
use Model;
/**
* Model
*/
class Notification 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_shops_notification';
/**
* @var array Validation rules
*/
public $rules = [
];
}