i\'m stuck at this very basic form, that i could not accomplish, which i want to build a search form with an text input, and two select controls, with a route that accept 3
Router
Route::get('search/{id}', ['as' => 'search', 'uses' => 'SearchController@search']);
Controller
class SearchController extends BaseController { public function search(Request $request){ $id= $request->id ; // or any params ... } }