b61 / laravel-reportable
reportable Polymorphic Eloquent Models for Laravel 5
0.2.1
2018-12-02 10:03 UTC
Requires
- php: ^7.1
- illuminate/database: ^5.6
- illuminate/support: ^5.6
Requires (Dev)
- graham-campbell/testbench: ^5.0
- mockery/mockery: ^1.0
- phpunit/phpunit: ^6.5
This package is auto-updated.
Last update: 2024-10-29 05:46:41 UTC
README
Our comment report system for the portal comments.
Installation
Require this package, with Composer, in the root directory of your project.
$ composer require b61/laravel-reportable
To get started, you'll need to publish the vendor assets and migrate:
php artisan vendor:publish --provider="BrianFaust\Reportable\ReportableServiceProvider" && php artisan migrate
Usage
Setup a Model
<?php namespace App; use ActivismBE\Reportable\HasReports; use Illuminate\Database\Eloquent\Model; class Post extends Model { use HasReports; }
Examples
The User Model reports the Post Model
$post->report([ 'reason' => str_random(10), 'meta' => ['some more optional data, can be notes or something'], ], $user);
Create a conclusion for a Report and add the User Model as "judge" (useful to later see who or what came to this conclusion)
$report->conclude([ 'conclusion' => 'Your report was valid. Thanks! We\'ve taken action and removed the entry.', 'action_taken' => 'Record has been deleted.' // This is optional but can be useful to see what happend to the record 'meta' => ['some more optional data, can be notes or something'], ], $user);
Get the conclusion for the Report Model
$report->conclusion;
Get the judge for the Report Model (only available if there is a conclusion)
$report->judge(); // Just a shortcut for $report->conclusion->judge
Get an array with all Judges that have ever "judged" something
Report::allJudges();
Testing
$ phpunit
Security
If you discover a security vulnerability within this package, please send an e-mail to hello@brianfaust.me. All security vulnerabilities will be promptly addressed.