Laravel 7/6 Calculate Time Difference Between Two Dates In Hours And Minutes
Feb 21, 2020
Hi Guys,
In this example, I will explain how to calculate time difference between two dates in hours and minutes in laravel,we will show calculate time difference between two dates in hours and minutes.we will carbon using time difference between two dates in hours and minutes.
I will show difference between two dates in hours and minutes using diffForHumans and diff methods in laravel we will diffForHumans method to show difference between two dates in hours and minutes.
Here following example of calculate time difference between two dates in hours and minutes in laravel
Example: 1
Now the example of diffForHumans method using time difference between two dates in hours and minutes in laravel.
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$startTime = Carbon::parse('2020-02-11 04:04:26');
$endTime = Carbon::parse('2020-02-11 04:36:56');
$totalDuration = $endTime->diffForHumans($startTime);
dd($totalDuration);
}
Output
"32 minutes after"
Example: 2
Now the example of diff method using time difference between two dates in hours and minutes in laravel.
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$startTime = Carbon::parse('2020-02-11 04:04:26');
$endTime = Carbon::parse('2020-02-11 04:36:56');
$totalDuration = $startTime->diff($endTime)->format('%H:%I:%S')." Minutes";
dd($totalDuration);
}
Output
"00:32:30 Minutes"
It will help you...
- How to Notifications With database Driver in Laravel 11?
- How to Send Email Via Notification in Laravel 11?
- How to Install and Configure Laravel 11 Debugbar?
- How to Like Dislike System in Laravel 11?
- How to Paginate a Model with Relationship in Laravel 11?
- Laravel 11 Upload Files to Amazon S3 Example
- Laravel 11 Send WhatsApp Messages Example
- Laravel 11 Rest API Authentication Using JWT Tutorial