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
Route::get('post/user/{id}','ProductController@allpost')->where('id', '[0-9]+');
Controller
public function allpost($id) { $products = Product::where('uploadby', $id)->orderBy('created_at','desc')->paginate(5); return view('product.user_product')->with('products', $products); }