. */ namespace Modules\Preventivi; use Common\SimpleModelTrait; use Illuminate\Database\Eloquent\Model; class Stato extends Model { use SimpleModelTrait; protected $table = 'co_statipreventivi'; public function preventivi() { return $this->hasMany(Preventivo::class, 'idstatopreventivo'); } }