I have a table view in which I can click an button icon and redirect to another page carrying the id of the row that has been clicked.
@foreach ($pa
Simple example:
as link=> example.com/user/1 as rout=> Route::get('user/{id}', 'UserController@user'); as UserController function public function user($id){ echo $id; } output => 1