feat: add due date for tasks (monicahq/chandler#191)

This commit is contained in:
Mazarin
2022-08-27 09:01:59 -04:00
committed by GitHub
parent 49396f7b29
commit b54fac289d
11 changed files with 130 additions and 6 deletions
+2
View File
@@ -25,6 +25,7 @@ class ContactTask extends Model
'description',
'completed',
'completed_at',
'due_at',
];
/**
@@ -43,6 +44,7 @@ class ContactTask extends Model
*/
protected $dates = [
'completed_at',
'due_at',
];
/**