1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-28 00:30:45 +01:00
openstamanager/modules/ordini/src/Stato.php

16 lines
229 B
PHP
Raw Normal View History

2018-12-29 14:41:32 +01:00
<?php
namespace Modules\Ordini;
use Common\Model;
class Stato extends Model
{
protected $table = 'or_statiordine';
public function ordini()
2018-12-29 14:41:32 +01:00
{
return $this->hasMany(Ordine::class, 'idstatoordine');
}
}