Modify the HOME constant:
public const HOME = '/new_path';
Make sure you have a route defined for the new home path in your routes/web.php
Route::get('/new_path', [ExampleController::class, 'exampleMethod'])->name('new_path');