GithubHelp home page GithubHelp logo

reviewable's Introduction

laravel-reviewable

This package adds a reviewable feature to your app.

Install

composer require mohamedreda/reviewable publish config: php artisan vendor:publish --provider="MohamedReda\Reviewable\ReviewableServiceProvider"

Usage

First, add the MohamedReda\Reviewable\Traits\HasReviews trait to your model you want to add reviews to.

use MohamedReda\Reviewable\Traits\HasReviews;

class Post extends Model
{
    use HasReviews;

    // ...
}

Now you can create a review by:

// from reviewable entity
Post::first()->createReview($rate = 5, $review = 'Samole Review Goes Here', $auther = Auth::user());

// author is assumed to be logged in and executing this operation
Post::first()->createReview($rate = 10);

// with helper
review($reviewable = ReviewableModel::find(1), $rate = 5, $review = 'Sample Review Goes Here', $author = Auth::user());

and receive review scores by:

// summarizes all scores
ReviewableModel::first()->score;

// gives the average of all scores
ReviewableModel::first()->avg_score;

Using your own Review-Model

To change the configuration Review-Model, just create a new Model and reference it in the reviewable.models.review config.

reviewable's People

Contributors

m07amedreda avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.