Class LaravelUi5\Core\Parameters\Sources\RequestParametersSource

implements ParameterSourceInterface

Reads slot values from the current Laravel Request — route bindings, query string, or request body. Pinned first() in the Core boot chain.

Resolution order for each slot name:

  1. $request->route($name) — matched route parameter (e.g. /orders/{currency})
  2. $request->input($name) — query string or request body

input() covers both query string and JSON/form body; checking it after route bindings means a path-level binding wins over query / body.

Does not parse $filter. ODataFilter-driven slots were dropped from v0.9 (the dashboard consumer doesn't process $filter); a future call site can reintroduce that source when needed.

Methods