3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-06 12:55:49 +00:00

Fixes wrong users index route name

This commit is contained in:
snipe
2018-04-26 16:31:02 -07:00
parent 5365182c86
commit 6df7f6d6ec
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ class ViewAssetsController extends Controller
$error = trans('admin/users/message.user_not_found', compact('id'));
// Redirect to the user management page
return redirect()->route('users')->with('error', $error);
return redirect()->route('users.index')->with('error', $error);
}
}