Hi my problem is how to get and post resquest on same controller, my routes shown error.
Answer (1)
Hi use same routes for both get as well as post some thing like as below in laravel 5.5 :
Route::get('/candidates', 'CandidateController@candidates')->name('candidates');
Route::post('/candidates', 'CandidateController@candidates')->name('candidates');
Fully tested and workable.