This commit is contained in:
2020-09-17 15:19:00 +05:00
parent f09c853d14
commit bece63d2d4
4 changed files with 68 additions and 10 deletions

View File

@@ -10,4 +10,14 @@ class Task extends Model
use HasFactory;
protected $guarded = [];
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
protected $dates = [
'last_ping_at',
];
}