RJ

Results 11 comments of RJ

@dev-humayun Do you mean you want to get the average rating for every post in the table?

I will work on this and tray and get it into the next release. In the meantime, if anyone has implemented it and wants to make a pull request it...

@hellohasan What method are you calling that causes this?

I will look into this when I have time. If you have a fix ready you can send a pull request.

@DevYSM Have you checked that the reviewrateable_id for the App\Models\Admin and App\Models\User are not both "2". It is entirely possible that when the Admin that is being reviewed indeed has...

Thank you for the reply. I will have a look at it and geta fix in the next release.

@H4ck3r-x0 You can get all the ratings for a user by doing something like: ```php $user = User::find(1); $ratings = $user->getRecentUserRatings($user->id); ``` You can also just call it like this:...

While I am new here I figured I would post how I got around this issue. While the below throws and error: {{ Form::open('user/login', 'POST', array('id' => 'login-validate')) }} If...

The conflict is with Illuminate\Html\HtmlServiceProvider as it is trying to reference the Html for Illuminate instead of the HTML package included. Once I commented out: Illuminate\Html\HtmlServiceProvider in the providers and...

Thanks for the feedback. I do not have time to implement this at the moment. If you want to implement and create a PR, please feel free.