openstamanager/modules/ordini/src/Stato.php

16 lines
230 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 fatture()
{
return $this->hasMany(Ordine::class, 'idstatoordine');
}
}