Answers for "carbon diff day"

PHP
9

carbon date from format

Carbon::createFromFormat('Y-m-d H:i:s', $request->date)->format('d-m-Y')
Posted by: Guest on April-26-2020
1

carbon two day ago

$dt  =Carbon::now();

echo $dt->subDay();                      // 2012-03-03 00:00:00
echo $dt->subDays(29);
Posted by: Guest on February-02-2021

Browse Popular Code Answers by Language