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

16 lines
238 B
PHP

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