Level 102
https://laravel.com/docs/8.x/queries#json-where-clauses
->whereJsonContains('options->name', 'jone2')
json column example:
[
{"id": "1", name: "jone"},
{"id": "2", name: "jone2"},
{"id": "3", name: "jone3"}
]
I want to return a model provided it has jone2
Please or to participate in this conversation.