'datetime:Y-m-d H:i:s', // 指定序列化格式 // 'created_at' => 'datetime:Y-m-d H:i:s', // 指定序列化格式 'updated_at' => 'timestamp', // 指定序列化格式 'created_at' => 'timestamp', // 指定序列化格式 ]; public static function getCustomer($customer) { $customer['grade_txt'] = Constants::GRADE[$customer['grade']]; $customer['magnitude_txt'] = Constants::MAGNITUDE[$customer['magnitude']]; if ($customer['grade']<=2) { $customer['follow'] = 0; $customer['follow_txt'] = '跟进中'; }elseif ($customer['grade']<=5) { $customer['follow'] = 1; $customer['follow_txt'] = '已成交'; }else{ $customer['follow'] = 2; $customer['follow_txt'] = '已流失'; } $where = [ 'customer_id' => $customer['id'] ]; $begin_follow = Follow::select('id','created_at','updated_at') ->where($where) ->min('created_at'); $customer['begin_follow'] = $begin_follow; // $customer['last_follow'] = $last_follow; return $customer; } }