Skip to content

Commit 741e4fd

Browse files
author
abdulvakeel
committed
create a admin side user all list
1 parent 9f01c91 commit 741e4fd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

routes/web.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
use Illuminate\Support\Facades\Route;
1515
use Illuminate\Support\Facades\Artisan;
1616
use App\Http\Controllers\Admin\AdminDashboardController;
17+
use App\Http\Controllers\Admin\ManageUserController;
1718
use App\Http\Controllers\ProfileController;
1819

1920

@@ -26,7 +27,8 @@
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'])

0 commit comments

Comments
 (0)