After upgrading to Laravel 5.3, querying hybrid relations relations are throwing an error.
FatalErrorException in Builder.php line 613:
Call to a member function all() on array
I am using HybridRelations trait, and trying to query a Moloquent model from an Eloquent Model
$user->store()->first();
Here $user is an Eloquent Model and has a store(Moloquent). While querying this relation, I am getting this error.
Any help?