2018-08-08 19:32:20 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Modules\Fatture;
|
|
|
|
|
2018-09-25 16:47:44 +02:00
|
|
|
use Base\Model;
|
2018-08-08 19:32:20 +02:00
|
|
|
|
|
|
|
class Tipo extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'co_tipidocumento';
|
|
|
|
|
|
|
|
public function fatture()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Fattura::class, 'idtipodocumento');
|
|
|
|
}
|
|
|
|
}
|