承接 putheng/taggy 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

putheng/taggy

Composer 安装命令:

composer require putheng/taggy

包简介

An Eloquent tagging package for Laravel

README 文档

README

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

Laravel 5.5+:

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

Putheng\Taggy\TaggyServiceProvider::class,

The schema

For Laravel 5 migration

php artisan migrate

The model

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

use Putheng\Taggy\TaggableTrait;

class Lession extends Model {
    use TaggableTrait;
}

Usage

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

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();

统计信息

  • 总下载量: 4
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2019-01-17

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固