Skip to content

I can not ignore a parameter from documentation #604

Closed Answered by bakrianoo
bakrianoo asked this question in Q&A
Discussion options

You must be logged in to vote

I found the issue.
I was using this to get the ignored parameter in the function

$_ = $request->input("group_by_url");

$request->input forced the documentation to display the parameter.

To avoid this, I have to use

$params = $request->all();

$_ = $params['group_by_url'];

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by bakrianoo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant