This is the situation:
<?php class DictionaryController { public function postAddWord($id_dictionary) { ... } } What options besides pre-definition in route php: Route::post('/dictionary/add_word/{id_dictionary}'['uses'=>'D...@postAddWord']);
How do you get out of the situation?