Open dibakar1990 opened 3 months ago
could you verify first the route? ensure that the auth middleware is not blocking access to those named routes. You can add a simple test route without auth middleware to verify:
Route::get('test-route', [ProfileController::class, 'test'])->name('profile.test');
Then try to access it via {{ route('profile.test') }} and see if it's correctly resolved.
Multi tenant route issue
my tenant route is:
i have used route name {{ route('profile.setting') }}
Route [profile.setting] not defined.