PHPackages                             lifeids/abusereportable - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. lifeids/abusereportable

ActiveLibrary[Database &amp; ORM](/categories/database)

lifeids/abusereportable
=======================

Abuse Reportable Polymorphic Eloquent Models for Laravel 5

012PHP

Since Nov 17Pushed 8y ago1 watchersCompare

[ Source](https://github.com/lifeids/abusereportable)[ Packagist](https://packagist.org/packages/lifeids/abusereportable)[ RSS](/packages/lifeids-abusereportable/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel AbuseReportable
=======================

[](#laravel-abusereportable)

This package will allow you to add a full abuse report system into your Laravel application. Forked from AbdullahGhanem/reportable

Installation
------------

[](#installation)

First, pull in the package through Composer.

```
composer require lifeids/abusereportable
```

And then include the service provider within `app/config/app.php`.

```
'providers' => [
    Lifeids\AbuseReportable\AbuseReportableServiceProvider::class
];
```

At last you need to publish and run the migration.

```
php artisan vendor:publish
```

and

```
php artisan migrate
```

Setup a Model
-------------

[](#setup-a-model)

```
