skip to Main Content

Routing issues in Laravel project

I am working on a Laravel project where I have three types of admins, each with their own login pages. Here are the routes: // Core Admin Routes Route::get('/core-admin', [CoreAuthController::class, 'loadLogin']); Route::post('/core-admin', [CoreAuthController::class, 'login'])->name('login'); Route::middleware('auth')->group(function () { Route::get('/core-admin/dashboard', [CoreAuthController::class, 'coreAdmin']);…

VIEW QUESTION
Back To Top
Search