Carbon Difference in Time between two Dates in hh:mm:ss format
问题 I'm trying to figure out how I can take two date time strings that are stored in our database and convert it to a difference in time format of hh:mm:ss. I looked at diffForHumans , but that does give the format I'd like and returns things like after , ago , etc; which is useful, but not for what I'm trying to do. The duration will never span days, only a max of a couple hours. $startTime = Carbon::parse($this->start_time); $finishTime = Carbon::parse($this->finish_time); $totalDuration =