How to relation with two table when column value is a array in Laravel

Viewed 18
1 Answers

You should really have a participant pivot table with report_id and officer_id, and create proper relationships.

What you're asking for is possible through loops and lazy loading, but it will be extremely slow and unoptimized.

Related