I want to make url like this http://127.0.0.1:8000/post/edit_1=1&edit_2=2
to pass to my controller
I try route like this Route::get('post/edit_1={id}&edit_2={id2}', 'PostController@index')->name('post.index');
and View like this <a href="{{ route('post.index', '$id', '$id2') }}">Click Here</a>
But I always got error, can someone fix my code