Correzione date Preventivi e Contratti

This commit is contained in:
Dasc3er 2021-09-22 10:17:14 +02:00
parent 4cf5fcddbe
commit 46cbd26a18
2 changed files with 14 additions and 0 deletions

View File

@ -50,8 +50,10 @@ class Contratto extends Document
* @var array
*/
protected $dates = [
'data_bozza',
'data_conclusione',
'data_accettazione',
'data_rifiuto',
];
/**

View File

@ -43,6 +43,18 @@ class Preventivo extends Document
protected $table = 'co_preventivi';
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $dates = [
'data_bozza',
'data_conclusione',
'data_accettazione',
'data_rifiuto',
];
/**
* Crea un nuovo preventivo.
*