Answers for "how to show carbon in hours and minutes"

PHP
1

carbon add minutes

Carbon::now()->addMinutes($minutes)->timestamp;
Posted by: Guest on November-24-2020
1

change minutes in to hours carbon

You can use:
----------------
$minutes = 1510;
$hours = intdiv($minutes, 60).':'. ($minutes % 60);
!!! This only works with php >= v7.xx

Previous answer:
-------------------
$minutes = 1510;
$hours = floor($minutes / 60).':'.($minutes - floor($minutes / 60) * 60);
Posted by: Guest on July-24-2020

Code answers related to "how to show carbon in hours and minutes"

Browse Popular Code Answers by Language