I get a response in my routes.php, this response is a JSON, this is my code:
Route::post('/prueba', function(){
if(Request::ajax()){
echo Response::json(Request::all());
}
});
When I make an echo from this I get all this in my console:
What I need to get just the value from auction_price for example?
