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


PHP Tag::get方法代码示例

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


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

示例1: edit

 public function edit(Request $request, $id)
 {
     $station = \App\Station::findOrFail($id);
     if (!$request->user()->isAdmin() && $station->user_id != $request->user()->id) {
         return abort(403);
     }
     $selected_tags = old('tags', $station->tags()->lists('name')->toArray());
     $tags = array_unique(array_merge($selected_tags, \App\Tag::get()->lists('name')->toArray()));
     return view('backend.stations.edit', compact('station', 'tags', 'selected_tags'));
 }
开发者ID:ZeljkoDzafic,项目名称:AeroMeter,代码行数:10,代码来源:StationsController.php

示例2: getTags

 public function getTags()
 {
     return response()->json(['response_code' => 'RES_TAGS', 'messages' => 'Tags', 'data' => Tag::get()]);
 }
开发者ID:abhilash698,项目名称:kachingApp,代码行数:4,代码来源:CustomerService.php

示例3: index

 public function index()
 {
     $tags = \App\Tag::get();
     return view('backend.tags.index', compact('tags'));
 }
开发者ID:ZeljkoDzafic,项目名称:AeroMeter,代码行数:5,代码来源:TagsController.php

示例4: index

 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     return Tag::get();
 }
开发者ID:LucasFCastro,项目名称:laravel_and_angularjs_codes,代码行数:9,代码来源:TagController.php

示例5: allElementsV2

 public function allElementsV2()
 {
     $output = ['tags' => Tag::get(), 'cities' => Cities::with('Areas')->get(), 'states' => States::get(), 'countries' => Countries::get(), 'appElements' => AppElement::find(1)];
     return response()->json(['response_code' => 'RES_STS', 'messages' => 'States', 'data' => $output]);
 }
开发者ID:abhilash698,项目名称:kachingApp,代码行数:5,代码来源:ElementService.php

示例6: edit

 /**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function edit($id)
 {
     $product = Product::findOrFail($id);
     $categories = Category::lists('title', 'id');
     $tags = Tag::get();
     $timeFromInput = $product->published_at;
     $time = Carbon::parse($timeFromInput)->format('d-m-Y');
     return view('back.products.edit', compact('product', 'categories', 'tags', 'time'));
 }
开发者ID:PierreMartin,项目名称:starwars,代码行数:15,代码来源:ProductController.php

示例7: run

 /**
  * Run the database seeds.
  *
  * @return void
  */
 public function run()
 {
     $faker = Faker::create();
     $stories = Story::get()->lists('id')->all();
     $tags = Tag::get()->lists('id')->all();
     foreach (range(1, 10) as $index) {
         DB::table('story_tag')->insert(['story_id' => $faker->randomElement($stories), 'tag_id' => $faker->randomElement($tags)]);
     }
 }
开发者ID:paruljoshi,项目名称:Programming-Assignments,代码行数:14,代码来源:DatabaseSeeder.php


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