Skip to content

Commit

Permalink
fix welcome route
Browse files Browse the repository at this point in the history
  • Loading branch information
gheorghelupu17 committed Aug 29, 2023
1 parent 38afc82 commit e26ca22
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions routes/auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@

Route::patch('usrupdate/{id}', [RegisteredUserController::class, 'update'])->name('user.update');
Route::get('admin/welcome/{user}', Welcome::class)->name('filament.auth.welcome');
Route::middleware(config('filament.middleware.base'))
->domain(config('filament.domain'))
->prefix(config('filament.path'))
->group(function () {
Route::get('/welcome/{user}', Welcome::class)->name('filament.auth.welcome');
});
Route::get('ngo/welcome/{user}', [PasswordController::class,'setInitialPassword'])->name('ngo.user.welcome');
Route::post('ngo/welcome/{user}', [PasswordController::class,'storeInitialPassword'])->name('ngo.user.welcome.store');

Expand Down

0 comments on commit e26ca22

Please sign in to comment.