I am working on setting up search functionality for nurserypeople.com, and I am using the Directus CMS to manage and update content, while website users will be interacting with the web app that is built on Laravel.
I will be using Laravel Scout for the search index, and Algolia search api I believe. As I will be doing updates through Directus, which does the edits directly on the database and not through Laravel (using the save() method), I am concerned that my search index won't be updated with Laravel Scout as I edit and make changes to content myself.
Is there a way to ensure that content will be properly indexed, like on a weekly/daily basis so I don't have to manually update the index through the command line each time I update content?
Thank you!