Horje
carbon add minutes Code Example
carbon add minutes
Carbon::now()->addMinutes($minutes)->timestamp;
carbon date from format
Carbon::createFromFormat('Y-m-d H:i:s', $request->date)->format('d-m-Y')
laravel carbon human readable
$comment->created_at->diffForHumans();
add seconds to datetime carbon
Try to parse() it first:
$date = Carbon::parse($dateTime)
            ->addSeconds($seconds)
            ->format('Y-m-d H:i:s');
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);
laravel carbon
$now = Carbon::now();
echo $now;                               // 2020-03-22 17:45:58
echo "\n";
$today = Carbon::today();
echo $today;                             // 2020-03-22 00:00:00
echo "\n";
$tomorrow = Carbon::tomorrow('Europe/London');
echo $tomorrow;                          // 2020-03-23 00:00:00
echo "\n";
$yesterday = Carbon::yesterday();
echo $yesterday;                         // 2020-03-21 00:00:00




Php

Related
dump all variables twig Code Example dump all variables twig Code Example
orberby laravel Code Example orberby laravel Code Example
if word exist in string Code Example if word exist in string Code Example
php compare two dates Code Example php compare two dates Code Example
throwexception laravel Code Example throwexception laravel Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8