1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-23 20:30:51 +01:00
openstamanager/modules/contratti/src/Stato.php

16 lines
236 B
PHP
Raw Normal View History

2019-01-19 10:33:57 +01:00
<?php
namespace Modules\Contratti;
use Common\Model;
class Stato extends Model
{
protected $table = 'co_staticontratti';
public function preventivi()
{
return $this->hasMany(Contratto::class, 'idstato');
}
}