PHPackages                             starfolksoftware/pigeonhole - 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. starfolksoftware/pigeonhole

ActiveLibrary

starfolksoftware/pigeonhole
===========================

A simple and straighforward package to categorize models in your Laravel applications

v1.6.5(3y ago)14.9k[1 issues](https://github.com/starfolksoftware/pigeonhole/issues)MITPHPPHP ^8.1

Since Apr 15Pushed 3y ago1 watchersCompare

[ Source](https://github.com/starfolksoftware/pigeonhole)[ Packagist](https://packagist.org/packages/starfolksoftware/pigeonhole)[ Docs](https://github.com/starfolksoftware/pigeonhole)[ RSS](/packages/starfolksoftware-pigeonhole/feed)WikiDiscussions v1.x Synced 1mo ago

READMEChangelog (7)Dependencies (11)Versions (7)Used By (0)

Pigeonhole
==========

[](#pigeonhole)

A simple and straighforward package to categorize models in your Laravel applications.

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

[](#installation)

You can install the package via composer:

```
composer require starfolksoftware/pigeonhole
php artisan pigeonhole:install
php artisan migrate
```

Configuration
-------------

[](#configuration)

This is the contents of the published config file:

```
return [
    'middleware' => ['web'],

    'redirects' => [
        'store' => null,
        'update' => null,
        'destroy' => '/',
    ],
];
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="pigeonhole-views"
```

Usage
-----

[](#usage)

```
