3

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?

4

1 回答 1

5

您需要添加

use AlgoliaSearch\Laravel\AlgoliaEloquentTrait;

在模型的开头。

于 2015-10-02T10:46:13.637 回答