1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-03-02 10:17:53 +01:00

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');
}
}