Skip to content
Advertisement

How can I select one item of an array with laravel http request?

If i run this controller in laravel:

JavaScript

I’ll get this result:

JavaScript

But I only want to return the title, upc and brand and save them as three seperated variables to store them in my database. How can i do that? If I do this:

JavaScript

I’ll get NULL;

Does anybody know how to do this in laravel?

Advertisement

Answer

Laravel converts the JSON response of Http::get() to an array, as you’re seeing with your dd output. So you should be accessing it as an associative array.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement