当前位置: 首页>>代码示例>>PHP>>正文


PHP Tag::with方法代码示例

本文整理汇总了PHP中app\models\Tag::with方法的典型用法代码示例。如果您正苦于以下问题:PHP Tag::with方法的具体用法?PHP Tag::with怎么用?PHP Tag::with使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app\models\Tag的用法示例。


在下文中一共展示了Tag::with方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: show

 public function show($tagID)
 {
     $tagID = json_decode($tagID);
     $count = (bool) \Input::get('count');
     if (is_array($tagID)) {
         $tags = Cache::remember('tags_' . json_encode($tagID), 15, function () use($tagID) {
             return Tag::with('posts')->whereIn('id', $tagID)->get();
         });
     } else {
         $tags = array(Cache::remember('tag_' . $tagID, 15, function () use($tagID) {
             return Tag::with('posts')->find($tagID);
         }));
     }
     if ($count) {
         for ($i = 0; $i < count($tags); $i++) {
             $tags[$i]->count = count($tags[$i]->posts);
             unset($tags[$i]->posts);
         }
     }
     return self::makeResponse($tags);
 }
开发者ID:vanhonit,项目名称:lazada,代码行数:21,代码来源:TagController.php

示例2: create

 /**
  * Show the form for creating a new resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function create()
 {
     $categories = Category::with('translations')->get();
     $amenities = Tag::with('translations')->get();
     return view('dashboard.spaces.create', compact('categories', 'amenities'));
 }
开发者ID:optimatec,项目名称:cowork,代码行数:11,代码来源:SpaceController.php

示例3: index

 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $model = Tag::with('posts')->get()->toArray();
     return response()->json(['error' => false, 'data' => ['tags' => $model, 'counts' => count($model)]], 200);
 }
开发者ID:liubo2055,项目名称:test-lazada,代码行数:10,代码来源:TagController.php

示例4: edit

 /**
  * Show the form for editing the specified resource.
  *
  * @param  int $id
  *
  * @return \Illuminate\Http\Response
  */
 public function edit($id)
 {
     $venue = Venue::where('id', $id)->first();
     $categories = Category::with('translations')->get();
     $amenities = Tag::with('translations')->get();
     return view('dashboard.venues.edit', compact('venue', 'categories', 'amenities'));
 }
开发者ID:optimatec,项目名称:cowork,代码行数:14,代码来源:VenueController.php

示例5: index

 public function index($id)
 {
     $g = Tag::with('groups')->find($id)->toArray();
     dd($g);
 }
开发者ID:smadeira,项目名称:smallgroups,代码行数:5,代码来源:TagController.php


注:本文中的app\models\Tag::with方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。