laravel-review-rateable
laravel-review-rateable copied to clipboard
Cannot be used with the default User Model
Trying to implement this package on the user class which extends Authenticatable throws an error of "undefined type".
class User extends Model implements ReviewRateable
Works
but
class User extends Authenticatable implements ReviewRateable
throws undefined type
error.
Is there a workaround? Since I don't want to directly extend model.