PHPackages                             putheng/taggy - 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. putheng/taggy

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

putheng/taggy
=============

An Eloquent tagging package for Laravel

1.0(7y ago)04PHPPHP &gt;=7.0

Since Jan 17Pushed 7y ago1 watchersCompare

[ Source](https://github.com/putheng/taggy)[ Packagist](https://packagist.org/packages/putheng/taggy)[ RSS](/packages/putheng-taggy/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

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

[](#installation)

Require this package with composer. It is recommended to only require the package for development.

```
composer require putheng/taggy

```

Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.

### Setting up from scratch

[](#setting-up-from-scratch)

#### Laravel 5.5+:

[](#laravel-55)

If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php

```
Putheng\Taggy\TaggyServiceProvider::class,
```

#### The schema

[](#the-schema)

For Laravel 5 migration

```
php artisan migrate
```

#### The model

[](#the-model)

Your model should use `Putheng\Taggy\TaggableTrait` trait to enable tags:

```
use Putheng\Taggy\TaggableTrait;

class Lession extends Model {
    use TaggableTrait;
}
```

Usage
-----

[](#usage)

#### Seed

[](#seed)

Seed the `tags` table

```
use Putheng\Taggy\Models\Tag;

$tags = [
	[
		'name' => 'PHP',
		'slug' => str_slug('PHP')
	],
	[
		'name' => 'Laravel',
		'slug' => str_slug('Laravel')
	],
	[
		'name' => 'Testing',
		'slug' => str_slug('Testing')
	],
	[
		'name' => 'Redis',
		'slug' => str_slug('Redis')
	],
];

Tag::insert($tags);
```

#### Tag a lession

[](#tag-a-lession)

Create a new lession and tags

```
use App\Lession;

$lession = new Lession;
$lession->title = 'a new lession';
$lession->save();

# name or slug version of value in tags table
$lession->tag(['Laravel', 'php']);

# tag from a collections of model
$tags = Putheng\Taggy\Models\Tag::whereIn('slug', ['php', 'laravel'])->get();
$lession->tag($tags);

# tag from a model
$tag = Putheng\Taggy\Models\Tag::where('name', 'Laravel')->first();
$lession->tag($tag);
```

Tag to an existing lessions

```
$lession = Lession::find(1);
$lession->tag(['Redis']);
```

Untag from a lession

```
$lession = Lession::find(1);
$lession->untag(['Redis']);
```

Retag from a lession, will remove all tags from lession and retag again

```
$lession = Lession::find(1);
$lession->retag(['Redis']);
```

Show tags of a lession

```
$lession = Lession::find(1);

# return collection of tags
$tags = $lession->tags;
```

Get lessions of any tags

```
# get lessions of any tags from array of tags's slug
$lessions = Lession::withAnyTag(['php', 'laravel']);

# return collection of lession
$lessions->get();
```

Get lessions of all tags

```
# get lessions of all tags from array of tags's slug
$lessions = Lession::withAllTags(['php', 'laravel']);

# return collection of lession
$lessions->get();
```

Get lessions has tags

```
# get lessions that has tags from array of tags's slug
$lessions = Lession::hasTags(['php', 'laravel']);

# return collection of lession
$lessions->get();
```

A scope to retrieve any tags where the count

```
use Putheng\Taggy\Models\Tag;

# is greater than or equal to the given value.
$tags = Tag::useGte();

# is greater than to the given value.
$tags = Tag::useGt();

# is less than or equal to the given value.
$tags = Tag::useLte();

# is less than the given value.
$tags = Tag::useLt();
```

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

2722d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/19757130?v=4)[Putheng](/maintainers/putheng)[@putheng](https://github.com/putheng)

---

Top Contributors

[![putheng](https://avatars.githubusercontent.com/u/19757130?v=4)](https://github.com/putheng "putheng (6 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/putheng-taggy/health.svg)

```
[![Health](https://phpackages.com/badges/putheng-taggy/health.svg)](https://phpackages.com/packages/putheng-taggy)
```

###  Alternatives

[spatie/laravel-medialibrary

Associate files with Eloquent models

6.1k43.2M615](/packages/spatie-laravel-medialibrary)[mongodb/laravel-mongodb

A MongoDB based Eloquent model and Query builder for Laravel

7.1k8.4M91](/packages/mongodb-laravel-mongodb)[psalm/plugin-laravel

Psalm plugin for Laravel

3355.3M341](/packages/psalm-plugin-laravel)[yajra/laravel-oci8

Oracle DB driver for Laravel via OCI8

8793.2M23](/packages/yajra-laravel-oci8)[kirschbaum-development/eloquent-power-joins

The Laravel magic applied to joins.

1.6k32.6M45](/packages/kirschbaum-development-eloquent-power-joins)[glushkovds/phpclickhouse-laravel

Adapter of the most popular library https://github.com/smi2/phpClickHouse to Laravel

2051.5M2](/packages/glushkovds-phpclickhouse-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
