Добавить дни к Laravel

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