Adicione dias até o momento com o Laravel

$currentDateTime = Carbon::now();
$newDateTime = Carbon::now()->addDays(5);
Romesh Fernando