Sometimes we require to calculate minutes difference between two dates in laravel 5, laravel 6, laravel 7, laravel 8, laravel 9 and laravel 10 Application. But Laravel provide Carbon class. Help of Carbon class we can simply calculate minutes difference between two dates. you can simply customize code also.
In Following example you can see, we have a two dates, first $to variable and second one $from variable. Carbon class diffInDays function using you can get difference between two dates.
So, let’s see bellow example, it is pretty simple:
Example:
$to = \Carbon\Carbon::createFromFormat('Y-m-d H:s:i', '2015-5-6 3:30:34');
$from = \Carbon\Carbon::createFromFormat('Y-m-d H:s:i', '2015-5-6 3:30:54');
$diff_in_minutes = $to->diffInMinutes($from);
print_r($diff_in_minutes); // Output: 20
I hope you will find your solution.