This commit is contained in:
weiz 2024-01-23 17:39:49 +08:00
parent bfed0ce494
commit e623573382

View File

@ -30,5 +30,11 @@ class ProjectLogs extends BaseModel
protected $name = 'project_logs';
protected $deleteTime = 'delete_time';
public function getNextFollowUpDateAttr($value){
return !empty($value) ? date('Y-m-d',$value) : '';
}
public function getDateAttr($value){
return !empty($value) ? date('Y-m-d',$value) : '';
}
}