Laravel - How to Get Difference of Time in Minutes?

By Hardik Savani April 16, 2024 Category : Laravel

Sometimes we require to calculate minutes difference between two dates in laravel 5, laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 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:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use App\Models\Product;

use Carbon\Carbon;

class ProductController extends Controller

{

/**

* Write code on Method

*

* @return response()

*/

public function index()

{

$to = Carbon::createFromFormat('Y-m-d H:s:i', '2015-5-6 3:30:34');

$from = Carbon::createFromFormat('Y-m-d H:s:i', '2015-5-6 3:30:54');

$diffInMinutes = $to->diffInMinutes($from);

print_r($diffInMinutes);

}

}

I hope you will find your solution.

Tags :
Shares