本文整理汇总了PHP中app\models\Tag::whereTag方法的典型用法代码示例。如果您正苦于以下问题:PHP Tag::whereTag方法的具体用法?PHP Tag::whereTag怎么用?PHP Tag::whereTag使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Tag
的用法示例。
在下文中一共展示了Tag::whereTag方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: showPost
public function showPost($slug, Request $request)
{
$post = Post::with('tags')->whereSlug($slug)->firstOrFail();
$tag = $request->get('tag');
if ($tag) {
$tag = Tag::whereTag($tag)->firstOrFail();
}
return view($post->layout, compact('post', 'tag'));
}
示例2: store
/**
* Create a post.
*
* @param array $inputs
* @param int $user_id
* @return void
*/
public function store($inputs, $user_id)
{
$post = $this->savePost(new $this->model(), $inputs, $user_id);
// Tags gestion
if (array_key_exists('tags', $inputs) && $inputs['tags'] != '') {
$tags = explode(',', $inputs['tags']);
foreach ($tags as $tag) {
$tag_ref = $this->tag->whereTag($tag)->first();
if (is_null($tag_ref)) {
$tag_ref = new $this->tag();
$tag_ref->tag = $tag;
$post->tags()->save($tag_ref);
} else {
$post->tags()->attach($tag_ref->id);
}
}
}
// Maybe purge orphan tags...
}
示例3: update
/**
* Update a post.
*
* @param array $inputs
* @param App\Models\Post $post
* @return void
*/
public function update($inputs, $post)
{
$post = $this->savePost($post, $inputs);
// Tag control
$tags_id = [];
if (array_key_exists('tags', $inputs) && $inputs['tags'] != '') {
$tags = explode(',', $inputs['tags']);
foreach ($tags as $tag) {
$tag_ref = $this->tag->whereTag($tag)->first();
if (is_null($tag_ref)) {
$tag_ref = new $this->tag();
$tag_ref->tag = $tag;
$tag_ref->save();
}
array_push($tags_id, $tag_ref->id);
}
}
$post->tags()->sync($tags_id);
}