I'm using same route name for the get & post methods in route. those routes are using for the same purpose. ex : I'm calling to load add view form using get route
Route::get('add', 'UserController@addView')->name('user.add');
then,
I'm calling to store data in that form using post route
Route::post('add', 'UserController@store')->name('user.add');
is there any issue , If I use the same route name like this?