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