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

32 lines
566 B
PHP

<?php namespace TPS\Birzha\Models;
use Model;
/**
* Model
*/
class OrderItems 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_order_items';
public $belongsTo = [
'order' => ['TPS\Birzha\Models\Orders', 'table' => 'tps_birzha_orders'],
];
/**
* @var array Validation rules
*/
public $rules = [
];
}