mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-03-03 02:37:43 +01:00
16 lines
235 B
PHP
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');
|
|
}
|
|
}
|