Level 88
The age property comes from the request itself. So for example when you have a form and you post an input with the name age you can retrieve it from the request.
It's basically the same as $request->get('age'), however Laravel uses a magic getter to retrieve the input.
1 like