Laravel 5 : Carbon Difference in Time between two Dates in hh:mm:ss format

Laravel 5 : Carbon Difference in Time between two Dates in hh:mm:ss format

In this post, I will let you know how to get difference in time from given dates in Laravel 5.

This is required to calculate minutes left from scheduled time.

For example, If there is functionality to schedule appointment through your website and you need to send the push notification to user that you have scheduled the appointment at given time and there are only {time} left from your scheduled appointment.

There, you will need this functionality to calculate hour, minutes and seconds between two dates.

Ok, let's have a example :

Example
  1.     $to = \Carbon\Carbon::createFromFormat('Y-m-d H:i:s', '2017-5-6 3:30:10');
  2. $from = \Carbon\Carbon::createFromFormat('Y-m-d H:i:s', '2017-5-6 3:35:35');
  3. $diff_in_seconds = $to->diffInSeconds($from);
  4. print_r($diff_in_seconds); // Output: 325
  5. $diff_in_minutes = $to->diffInMinutes($from);
  6. print_r($diff_in_minutes); // Output: 5
  7. $diff_in_hours = $to->diffInHours($from);
  8. print_r($diff_in_hours); // Output: 0

Phone: (+91) 8800417876
Noida, 201301