How can I make the urls that result from get requests and receive friendly parameters, that is, I have this request:
Route::get('buscarParticipante','CarreraController@buscarParticipante')->name('buscar.participante');
And I send the parameters and they come out in the following way in the uri:
buscarParticipante?search=1&carrera=1&participante=1
What I would like to do is make this url friendly because I need to share it, but I would like something like this:
buscarParticipante/search/1/carrera/1/participante/1