When you have an URI such as login?r=articles
, you can retrieve articles
like this:
request()->r
You can also use request()->has('r')
to determine if it’s present in the URI.
And request()->filled('r')
to find out if it’s present in the URI and its value is not empty.