Skip to content
Advertisement

Laravel set option to selected if option id is in an array list in blade view

I made query in my controller and send it to my blade :

JavaScript

and when I call {{ $developer_contractor_association->defect_types }} in my blade, I get this :

JavaScript

Now I have a select field that list all the defect type that existed :

JavaScript

When population the option for the select field, How can I check if the id is in the defect_type_id JSON and set the option to selected. Something like this :

JavaScript

Advertisement

Answer

Assuming your defect_types relationship returns a Laravel Collection, you can use a couple of the Collection methods:

JavaScript

pluck('id') returns a Collection of defect_type id and you can then check if the current iteration of all defect_type is in that Collection with contains($defect_type->id).

You may use containsstrict() instead of contains() as that makes a strict comparison.

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