calculate difference in days between two dates in laravel blade

616 0 0 0

Last Updated : 2024-04-26 05:17:51

this snippet will teach you how to calculate difference in days between two dates in laravel blade

If you want to calculate the difference in days between two dates in laravel blade you have to use carbon::parse() like this


$startDate = Carbon\Carbon::parse($item->start_date);  
$endDate = Carbon\Carbon::parse($item->end_date);

// Difference between two dates
$allDays = $endDate->diffInDays($startDate);

// Difference between date and now
$daysFromNow = $endDate->diffInDays(Carbon\Carbon::now());

Mahmoud Anwar

Mahmoud Anwar

Back End Developer with a passion for developing innovative web applications that expedite the efficiency and effectiveness of organizational success. Well-versed in technology and writing code to create systems that are reliable and user-friendly. Also has the proven ability to motivate, educate, and collaborate effectively to build web applications and effectively track changes. Confident communicator, strategic thinker, and innovative creator to develop software that is customized to meet a company’s organizational needs, highlight their core competencies, and further their success.