1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-25 07:47:55 +01:00

16 lines
226 B
PHP
Raw Normal View History

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