1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-09 08:08:39 +01:00

16 lines
238 B
PHP
Raw Normal View History

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