79544277

Date: 2025-03-30 07:17:34
Score: 1
Natty:
Report link

Yes ,you can get all the parameters。just like this

 /users?limit=5&gender=male&age=20&position=CEO&...

$data = $request->all();

then $data is a array like this

$data=[
  'limit'=>'5',
  'gender'=>'male',
  'age'=>'20',
  'position'=>'CEO'
  ...
];
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Admin