Can i use laravel voyager for two different url admin?
Sample Code
Route::prefix('admin-1')->group(function() {
Voyager::routes();
});
Route::prefix('admin-2')->group(function() {
Voyager::routes();
});
I have tried this but the admin-2 always give me redirect to the admin-1 when login and execute menu in dashboard.