3
votes

I am trying to install the Algolia laravel package but I am getting this error:

Trait 'App\AlgoliaEloquentTrait' not found

I follow the instructions under install, configuration and quickstart from this link:

https://github.com/algolia/algoliasearch-laravel#configuration

I simply added use AlgoliaEloquentTrait; to one of my models. What could I be doing wrong here?

1
Give us some code to deal with, maybe the model file :)cre8

1 Answers

5
votes

You need to add

use AlgoliaSearch\Laravel\AlgoliaEloquentTrait;

at the beginning of your model.