PHPackages                             dyfun/tags - 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. dyfun/tags

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

dyfun/tags
==========

Laravel tags package

1.0(2y ago)09PHP

Since Apr 22Pushed 2y ago1 watchersCompare

[ Source](https://github.com/dyfun/Laravel-Simple-Tag)[ Packagist](https://packagist.org/packages/dyfun/tags)[ RSS](/packages/dyfun-tags/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Simple Laravel Tag Package
--------------------------

[](#simple-laravel-tag-package)

This package is a simple tag package for Laravel. It allows you to add tags to any model in your Laravel application.

### Installation

[](#installation)

You can install the package via composer:

```
composer require dyfun/tags
```

add the service provider to your config/app.php file:

```
'providers' => [
    ...
    Dyfun\Tags\TagsServiceProvider::class,
    ...
];
```

run

```
php artisan migrate
```

### Usage

[](#usage)

Apply HasTags trait to a model

```
