quick question, about User Input Request to Laravel:
public function store(Request $request)
{
$name = $request->nameValue; //Doc: $name = $request->('nameValue');
}
Do I have to put all Requests as mentioned in Doc or is the "quick" way also allowed?
There is no difference between $request->value and $request->('value')? Both are working fine so far - but I do not want have any security issues if Im working with $request->value only.
Thanks alot for your help :)