LaravelPackages.net
Acme Inc.
Toggle sidebar
idevin/reviewable

Reviewable Polymorphic Eloquent Models for Laravel 5

12
0
10.0
About idevin/reviewable

idevin/reviewable is a Laravel package for reviewable polymorphic eloquent models for laravel 5. It currently has 0 GitHub stars and 12 downloads on Packagist (latest version 10.0). Install it with composer require idevin/reviewable. Discover more Laravel packages by idevin or browse all Laravel packages to compare alternatives.

Last updated

Laravel Reviewable

Build Status PHP from Packagist Latest Version License

Installation

Require this package, with Composer, in the root directory of your project.

$ composer require artisanry/reviewable

To get started, you'll need to publish the vendor assets and migrate:

php artisan vendor:publish --provider="Artisanry\Reviewable\ReviewableServiceProvider" && php artisan migrate

Usage

Setup a Model

<?php

namespace App;

use Artisanry\Reviewable\Traits\HasReviews;
use Illuminate\Database\Eloquent\Model;

class Post extends Model
{
    use HasReviews;
}

Create a review

$user = User::first();
$post = Post::first();

$review = $post->createReview([
    'title' => 'Some title',
    'body' => 'Some body',
    'rating' => 5,
], $user);

dd($review);

Update a review

$review = $post->updateReview(1, [
    'title' => 'new title',
    'body' => 'new body',
    'rating' => 3,
]);

Delete a review

$post->deleteReview(1);

Testing

$ phpunit

Security

If you discover a security vulnerability within this package, please send an e-mail to [email protected]. All security vulnerabilities will be promptly addressed.

Credits

This project exists thanks to all the people who contribute.

License

Mozilla Public License Version 2.0 (MPL-2.0).

Comments