ItSolutionStuff.com

How to Get Hours Difference Between Two Dates in Laravel?

By Hardik Savani • April 16, 2024
Laravel

Whenever you need to get difference between two dates in hours in laravel then you can get easily using Carbon. Laravel by default provide Carbon class. Carbon class throught you can calculate difference between two dates in hours.

you can use this example with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 version.

In Following example you can see, we have a two dates, first $to variable and second one $from variable. Carbon class diffInhours function using you can get difference between two dates. I hope you will find your solution.

Example:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

use Carbon\Carbon;

class DemoController extends Controller

{

/**

* Write code on Method

*

* @return response()

*/

public function index()

{

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

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

$diff_in_hours = $to->diffInHours($from);

dd($diff_in_hours);

}

}

Output

6

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel Carbon Check Date is in Past Date Code

Read Now →

Carbon Get First Day of Specific Month Example

Read Now →

Laravel Carbon Convert String to Date Example

Read Now →

Laravel Carbon Get Next Month Example

Read Now →

Laravel Carbon Get All Months Between Two Dates Example

Read Now →

Laravel Carbon Get Tomorrow Date Example

Read Now →

Laravel Carbon addSeconds() | Laravel Carbon Add Seconds Example

Read Now →

Laravel Carbon addYears() | Laravel Carbon Add Year Example

Read Now →

Laravel Carbon Subtract Months from Date Example

Read Now →

Laravel Carbon addMonths() | Laravel Carbon Add Months Example

Read Now →

Laravel Carbon Subtract Days to Date Example

Read Now →

Laravel Carbon Add Days to Date Example

Read Now →

Laravel Change Date Format using Carbon Example

Read Now →