PHPackages                             komicho/laravel-iid - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. komicho/laravel-iid

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

komicho/laravel-iid
===================

 Build a separate disambiguation for specific categories (IID) - Laravel

078PHP

Since Dec 25Pushed 6y ago1 watchersCompare

[ Source](https://github.com/komichoss/laravel-iid)[ Packagist](https://packagist.org/packages/komicho/laravel-iid)[ RSS](/packages/komicho-laravel-iid/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

komicho\\laraveliid
===================

[](#komicholaraveliid)

Build a separate disambiguation for specific categories (IID) . [wikipedia](https://en.wikipedia.org/wiki/IID_(disambiguation))

use
---

[](#use)

```
use Komicho\Laravel\Traits\LaravelIid;
```

---

functions
---------

[](#functions)

### create

[](#create)

```
Model::create($data);
```

---

variables
---------

[](#variables)

### $guideColumn

[](#guidecolumn)

```
protected $guideColumn = '';
```

Type the name of the column through which the group sequence is selected.

database &gt; migrations
------------------------

[](#database--migrations)

### add column

[](#add-column)

You must add this column.

```
...

$table->integer('iid')->nullable();

...
```

Full example:-
--------------

[](#full-example-)

Specify a sequence for each project.

### Model :-

[](#model--)

```
