How to add route in nova service provider without package #6301
shubhamserverfront
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Description:
Route::middleware('auth')->group(function () {
Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
});
Detailed steps to reproduce the issue on a fresh Nova installation:
I have this code I want that when the user clicks on edit profile then it should go to /profile route but the main problem I am facing is that it shows 404 and when I inspect it href="/manager/profile" is their /manager is coming by which it is showing 404
is there any way to resolve this error or any other way that I can use to edit the profile without the package?
Beta Was this translation helpful? Give feedback.
All reactions