PHPackages                             nicklace/reportable - 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. [Templating &amp; Views](/categories/templating)
4. /
5. nicklace/reportable

ActiveLibrary[Templating &amp; Views](/categories/templating)

nicklace/reportable
===================

Reportable Polymorphic Eloquent Models for Laravel 8

1.1(10y ago)010MITPHPPHP &gt;=5.5.9

Since Oct 23Pushed 5y agoCompare

[ Source](https://github.com/nicklace/reportable)[ Packagist](https://packagist.org/packages/nicklace/reportable)[ RSS](/packages/nicklace-reportable/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependencies (1)Versions (3)Used By (0)

[![Latest Version](https://camo.githubusercontent.com/87cab16ddad3003250d3812fb3f07a623e22d362920dee3199e59ec9bfca84f0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f616264756c6c61686768616e656d2f7265706f727461626c652e7376673f7374796c653d666c61742d737175617265)](https://github.com/abdullahghanem/reportable/releases)[![Total Downloads](https://camo.githubusercontent.com/42129caaeec6b5c9a726a44eba3c02bd692d5dc2b4f45c6cdb38892064bd5b76/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6768616e656d2f7265706f727461626c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ghanem/reportable)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)

Laravel Reportable
==================

[](#laravel-reportable)

This package will allow you to add a full report system into your Laravel application.

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

[](#installation)

First, pull in the package through Composer.

```
composer require nicklace/reportable
```

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

```
'providers' => [
    Nicklace\Reportable\ReportableServiceProvider::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)

```
