idevin/reviewable
最新稳定版本:10.0
Composer 安装命令:
composer require idevin/reviewable
包简介
Reviewable Polymorphic Eloquent Models for Laravel 5
README 文档
README
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 hello@basecode.sh. 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).
统计信息
- 总下载量: 12
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MPL-2.0
- 更新时间: 2022-11-03