How do you pass a customer's id to a datatable editor form?
How do you pass a customer's id to a datatable editor form?

This is in laravel. I have a users table and form and in a column a link to pass the $uid to another DTE page:
``return '<a href=/bin/inspections2?uid=' + data.users.id + ' target="_new">Report</a>';
It correctly drops the $uid into the URL of the next table but it is invisible to the next DTE page. The URL displays as:
``/bin/inspections2?uid=2
Seems great. However in the laravel controller file, I cannot get the variable out of the URL. It comes up empty:
$uid = $request->input('uid'); // Get `uid` from the request
\Log::debug("Received UID: " . $uid);
The $uid is necessary to set a where statement to limit result's to those of that user. Any ideas?
Answers
I don't know anything about Laravel and the question is not specific to Datatables. It would probably be best to refer to the Laravel docs to learn how to retrieve the query parameters. Maybe this SO thread will help.
Kevin