mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-03-04 11:17:38 +01:00
16 lines
249 B
PHP
Executable File
16 lines
249 B
PHP
Executable File
<?php
|
|
|
|
namespace Modules\Preventivi;
|
|
|
|
use Common\Model;
|
|
|
|
class Stato extends Model
|
|
{
|
|
protected $table = 'co_statipreventivi';
|
|
|
|
public function preventivi()
|
|
{
|
|
return $this->hasMany(Preventivo::class, 'idstatopreventivo');
|
|
}
|
|
}
|