File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 1414use Illuminate \Support \Facades \Route ;
1515use Illuminate \Support \Facades \Artisan ;
1616use App \Http \Controllers \Admin \AdminDashboardController ;
17+ use App \Http \Controllers \Admin \ManageUserController ;
1718use App \Http \Controllers \ProfileController ;
1819
1920
2627 Route::group (['prefix ' => 'admin ' ], function () {
2728 /* ! admin dashboard */
2829 Route::get ('/dashboard ' , [AdminDashboardController::class, 'dashboard ' ])->name ('admin.dashboard ' );
29-
30+ Route::get ('/allUsers ' , [ManageUserController::class, 'index ' ])->name ('admin.users.index ' );
31+
3032 // Admin Profile
3133 Route::get ('/profile ' , [AdminProfileController::class, 'show ' ])->name ('admin.profile.show ' );
3234 Route::put ('/profile-information ' , [AdminProfileController::class, 'update ' ])
You can’t perform that action at this time.
0 commit comments