Laravel obtient tous les paramètres de demande
$request->input('name');
$request->input('user.name'); // fetch from user object
Dizzy Dove
$request->input('name');
$request->input('user.name'); // fetch from user object
dd($request->all());
//print an array of the input name and the input value