PHP code example of dorvidas / laravel-ratings

1. Go to this page and download the library: Download dorvidas/laravel-ratings library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dorvidas / laravel-ratings example snippets


$app->register(\Dorvidas\Ratings\RatingsServiceProvider::class);
$app->configure('ratings');

Dorvidas\Ratings\RatingsServiceProvider::class,

    $builder = new \Dorvidas\Ratings\RatingBuilder;
    $builder->model($model)->give(5);

    Rate::model($model)->give(5);

    $post->rate()->give(5);

$post = Post::first();
$user = User::first();
$user->rate()->on($post)->give(5);

$author = User::first();
$illustrator = User::skip(1)->first();
$author->rate()->on($post)->as('author_id')->give(5);
$illustrator()->rate()->on($post)->as('illustrator_id')->give(5);

$post = Post::first();
$ratings = Rating::of($post)->get();

$postId = 1;
$ratings = Rating::model(Post::class)->modelId($modelId)->get();

//Or doing where statements
$ratings = Rating::where('model', Post::class)->where('model_id, $postId)->get();


$user = User::first();
$post = Post::first();
$user->ratings()->on($post)->first(); //Returns Rating model instance
$user->ratings()->on($post)->first()->rating; //Returns actual rating

$user = User::first();
$post = Post::first();
$user->ratings()->on($post)->as('author_id')->first();

$model->rating_aggregates;
bash
php artisan vendor:publish --tag=public --force