PHPackages                             coliving/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. [PDF &amp; Document Generation](/categories/documents)
4. /
5. coliving/reportable

ActiveLibrary[PDF &amp; Document Generation](/categories/documents)

coliving/reportable
===================

Reportable Polymorphic Eloquent Models for Laravel 8, 9, 10, 11 &amp; 12

1.7(1y ago)127.2k↓43.1%MITPHPPHP ^7.3 | ^8.0 | ^8.1 | ^8.2 | ^8.3 | ^8.4

Since Oct 23Pushed 1y ago1 watchersCompare

[ Source](https://github.com/dungnh/reportable)[ Packagist](https://packagist.org/packages/coliving/reportable)[ RSS](/packages/coliving-reportable/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (1)Versions (16)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 coliving/reportable
```

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

```
'providers' => [
    Ghanem\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)

```
