'array', ]; protected $appends = [ 'result_time', ]; public function getResultTimeAttribute($key) { if ($this->updated_at) { return $this->updated_at; } return ''; } public function getCloseTime($earlySecond) { $time = strtotime($this->close_time); return date('Y-m-d H:i:s', $time - $earlySecond); } }