简体   繁体   中英

return $request->input() is returning nothing on laravel

I am sorry it might seem very silly but I really don't know where the problem is, I am working on a register page and I am trying to see if i can get the requested input but when I use return $request->input() it gives me an empty token with no values of the input:

{"_token":"f6Ohhsz5RsWe1NAf0QC8uI5YcopXf5ug2jHqF5u6"}

here's the function I am using in the controller:

public function store(Request $request)
{
    return $request->input();

}  

and these are the routes I am using for the register page:

Route::get('/register', 'App\Http\Controllers\AuthController@register') ->name('register');

Route::post('/store', 'App\Http\Controllers\AuthController@store')->name('store');      

please I need some help !!

return $request->all();

you can request all data.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM