Hi I have this array and I am not sure how will I fetch the name , brand, image, token values from it?
Gloudemans\\Shoppingcart\\CartCollection Object
(
[i
save the object in a variable and do a foreach
loop,
foreach($cart as $item) {
echo $item->name;
echo $item->options->brand;
}
if that's not working, you can use the fetch
method from the collection
class.
http://laravel.com/api/5.0/Illuminate/Support/Collection.html#method_fetch
$item->fetch('name');
and the package you're using has a alternate method search
$item->search('name');
$item->search(['options' => 'name'])
https://github.com/Crinsane/LaravelShoppingcart/blob/master/src/Gloudemans/Shoppingcart/CartRowOptionsCollection.php