Support the ongoing development of Laravel.io →
Requests Input Forms
Last updated 1 year ago.
0

Why don't you just try it? Much quicker than waiting for a response here. There're only so many possibilities, after all. Here are a couple that come to mind:

Input::get('user.username'); // not sure if dot notation works here
Input::get('user')['username']; // this should work

But if you're gonna work with all of the values anyways, why not just do this?

$user = Input::get('user');
$user['username'];
...
Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.