0

I'm fetching data from Airtable and converting this to an Eloquent Model.

Is there a way to send this Model to Algolia without first storing it in a MySql DB?

Mike Thrussell
  • 4,175
  • 8
  • 43
  • 59

1 Answers1

0

try this command:

php artisan scout:import "<your model path>"

e.g. php artisan scout:import "App\Product"

Purvang Gor
  • 108
  • 2
  • 11