'Laravel 8 route returning fail, the post method works fine but the get method is not reaching to controller? [closed]

These are controllers

Route::post('user/project', [UserProjectsController::class, 'store']);
Route::get('user/projects', [UserProjectsController::class, 'index']);

these are the routes

this is the response, it is not returning any error



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source