Require this package, with Composer, in the root directory of your project.
$ composer require pmochine/laravel-report
To get started, you'll need to publish the vendor assets and migrate:
php artisan vendor:publish --provider="Pmochine\Report\ReportServiceProvider" && php artisan migrate
<?php
namespace App;
use Pmochine\Report\Traits\HasReports;
use Illuminate\Database\Eloquent\Model;
class Post extends Model
{
use HasReports;
}
$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);
$report->conclusion;
$report->judge(); // Just a shortcut for $report->conclusion->judge
Report::allJudges();
$ phpunit
If you discover any security related issues, please don't email me. I'm afraid 😱. avidofood@protonmail.com
Now comes the best part! 😍 This package is based on