g_sto/plugins/romanah/gokbakja/models/BagSize.php

38 lines
720 B
PHP

<?php namespace Romanah\Gokbakja\Models;
use Model;
/**
* Model
*/
class BagSize extends Model
{
use \October\Rain\Database\Traits\Validation;
use \October\Rain\Database\Traits\SoftDelete;
protected $dates = ['deleted_at'];
public $hasMany = [
'machine' => [
'Romanah\Gokbakja\Models\ProductionMachine',
'key' => 'size_id'
],
'order_items' => [
'Romanah\Gokbakja\Models\OrderItem',
'key' => 'size_id'
],
];
/**
* @var string The database table used by the model.
*/
public $table = 'romanah_gokbakja_bag_size';
/**
* @var array Validation rules
*/
public $rules = [
];
}