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:
$request->route($name) — matched route parameter (e.g. /orders/{currency})$request->input($name) — query string or request bodyinput() 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 | ||
|---|---|---|
public
|
__construct(Request $request)
|
# |
public
|
fill(array $slotNames): array
|
# |