fix minore
This commit is contained in:
parent
e752db93c0
commit
d57ee7edaa
|
@ -33,4 +33,15 @@ class Stato extends Model
|
|||
{
|
||||
return $this->hasMany(Intervento::class, 'idstatointervento');
|
||||
}
|
||||
|
||||
public static function build($nome)
|
||||
{
|
||||
$model = new static();
|
||||
|
||||
$model->codice = 'NEW';
|
||||
$model->descrizione = $nome;
|
||||
$model->save();
|
||||
|
||||
return $model;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -37,14 +37,8 @@ trait SimpleModelTrait
|
|||
*
|
||||
* @return static
|
||||
*/
|
||||
public static function build($nome)
|
||||
public static function build()
|
||||
{
|
||||
$model = new static();
|
||||
|
||||
$model->codice = 'NEW';
|
||||
$model->descrizione = $nome;
|
||||
$model->save();
|
||||
|
||||
return $model;
|
||||
return new static();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue