Skip to content
Advertisement

Passing a variable to a ->each() function making the variable always = 0 php

One of the routes I’m making for my API in laravel requires me to pass a variable to a ->each() function.

This can be seen below:

JavaScript

This first error_log outputs ‘2’, but with the second I get ‘Trying to get property ‘id’ of non-object’.

Any help is apprecited!

Advertisement

Answer

You probably want to use $zone which you selected from database on first line. Also if you want to change value of item you are iterating you have to use ->map() instead of ->each()

I changed ->get()[0] to ->first(). Never use ->get()[0]

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