skip to Main Content

Problem in root route in laravel 8 Using illuminate – Apache

This is my first time asking questions in StackOverflow so sorry for the mistakes. I have a problem with laravel routes. <?php use IlluminateSupportFacadesRoute; //start :: login Route::group(['namespace' => 'auth'], function () { Route::get('/', 'AuthController@index')->name('index'); Route::get('/showResult', 'AuthController@Result')->name('Result'); Route::post('/showResultds', 'AuthController@showResult')->name('showResult'); Route::post('/dologin',…

VIEW QUESTION
Back To Top
Search