I'm trying to retrieve a single input from laravel request
$request->input('username')
But it returns undefined in ajax response, I tried:
$request->only('username')
as well as:
$request->username`
but none of them work, exept for:
$request->all()
which returns the right data object:
Object {
username: "username",
password: "password",
_token: "uKi2r3G1XPiOLhi13da3NC67ssjc1qmeiGWFtQNM"
}
So I need to access single values.
Log::info($request['username']);gives this in laravel.log :[2016-09-20 12:50:06] local.INFO:nothing$requestdefined in your code?$request['data']['username']but it is still weird , laravel docs don't mention this syntax at all