PHP code example of rockbuzz / lara-tags

1. Go to this page and download the library: Download rockbuzz/lara-tags library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

rockbuzz / lara-tags example snippets


$ php artisan vendor:publish --provider="Rockbuzz\LaraTags\ServiceProvider" --tag="migrations"

$ php artisan migrate

use Rockbuzz\LaraTags\Traits\Taggable;

class Article extends Model
{
    use Taggable;
}

use Rockbuzz\LaraTags\Models\Tag;

$tag = Tag::findFromSlug('slug'); //instance or null
$tag = Tag::findFromSlug('slug', 'type'); //instance or null

$article = new Article();
$article->tags(); //MorphToMany
$article->tags; //Collection
$article->tagsWithType('type'); //Collection
$article->hasTag('tag_name'); //boolean
$article->hasTag($tagInstance); //boolean

Article::withAnyTags($arrayTags);
Article::withAnyTags($arrayTags, 'type');

Article::withAnyTags($arrayIdTags);
Article::withAnyTags($arrayIdTags, 'type');

Article::withAnyTags($arrayNameTags);
Article::withAnyTags($arrayNameTags, 'type');