name('about'); Route::get('/long-run-job', function () { dispatch(new LongRunJob()); flash('Please wait, your request is processing...'); return redirect()->home(); })->name('long-run-job'); Route::get('/private-long-run-job', function () { dispatch(new LongRunPrivateJob(auth()->id())); flash('Please wait, your request is processing...'); return redirect()->home(); })->name('private-long-run-job'); Auth::routes(); Route::get('/home', 'HomeController@index')->name('home');