I have two models Subscription and Customer. They both have the Searchable
trait in them along with custom toSearchableArray()
functions. I have them both being aggregated into a single omni_search
index.
I would prefer that they only go into the omni_search
index and not into their own individual indexes when I run $model->searchable()
. How would I go about preventing Scout from creating the model indexses and only let them update the omni_search
index.
Thank you for the help!