amalikov / taggy
An Eloquent tagging package for laravel
Requires
- php: ^7.1.3
- illuminate/database: 5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0
- illuminate/support: 5.4.*||5.5.*||5.6.*||5.7.*||5.8.*||^6.0||^7.0||^8.0
Requires (Dev)
- orchestra/testbench: ^3.4|^4.0|^5.0|^6.0
- phpunit/phpunit: ~5.0||~6.0||~7.0||~8.0||~9.0
This package is auto-updated.
Last update: 2025-03-09 15:26:20 UTC
README
An Eloquent tagging package for Laravel
Installation
Install the package through Composer.
Run the Composer require command from the Terminal:
composer require amalikov/taggy
The final steps for you are to add the service provider of the package and alias the package. To do this open your config/app.php
file.
Amalikov\Taggy\TaggyServiceProvider::class
Go to the terminal in folder that you are migrate the tags
and taggable
tables:
php artisan migrate
Usage
Add the TaggableTrait
trait to a model you like to use tags
on.
use Amalikov\Taggy\TaggableTrait;
class YourEloquentModel extends Model
{
use TaggableTrait;
}
Create a tags data for table that you use for example in controller or whatever place you want:
use Illuminate\Support\Str;
$tags = Tag::create([
'name' => 'Tag Name',
'slug' => Str::slug('Tag Name')
]);
You just need to pass the data that working with the models
$model = new YourEloquentModel;
$model->title = 'Test';
$model->save();
Set a new tags
You can set a new tags like this:
$model->tag(['your_tag_name']);
Untag existing tags
You can untag existing tag
$model->untag(['your_tag_name']);
Untag all tags
$model->untag();
Retag existing tag
$model->retag(['your_tag_name']);