laravel carbon 1 day ago code example
Example 1: add seconds to datetime carbon
Try to parse() it first:
$date = Carbon::parse($dateTime)
->addSeconds($seconds)
->format('Y-m-d H:i:s');
Example 2: laravel carbon human readable
$comment->created_at->diffForHumans();