1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-03-03 02:37:43 +01:00
2018-10-05 11:22:32 +02:00

16 lines
235 B
PHP

<?php
namespace Modules\Fatture;
use Common\Model;
class Tipo extends Model
{
protected $table = 'co_tipidocumento';
public function fatture()
{
return $this->hasMany(Fattura::class, 'idtipodocumento');
}
}