. */ namespace Modules\Interventi; use Common\SimpleModelTrait; use Illuminate\Database\Eloquent\Model; class Stato extends Model { use SimpleModelTrait; protected $primaryKey = 'idstatointervento'; protected $table = 'in_statiintervento'; public function interventi() { return $this->hasMany(Intervento::class, 'idstatointervento'); } }