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


PHP Skill::where方法代码示例

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


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

示例1: index

 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     if (!Auth::check()) {
         return Redirect::guest('/ow_login');
     }
     $resume = Auth::user()->resume()->first();
     if (is_null($resume)) {
         Flash::success("请先完善资料,在查看资料");
         return Redirect::route('editsetting')->with('message', "请先完善资料,在查看资料");
     }
     $projects = Auth::user()->projects()->first();
     $skill = Skill::where('id', '=', $resume->skill_id)->first()->skill;
     return View::make('account.index', compact('resume', 'projects', 'skill'));
     //		if(!Auth::check()){
     //		return 	Redirect::intended('/');
     //		}
     //
     //		return View::make('account.index');
 }
开发者ID:fcode520,项目名称:phphub,代码行数:24,代码来源:AccountController.php

示例2: show

 public function show($id)
 {
     $resume = Resume::where('user_id', '=', $id)->first();
     $user = User::findOrFail($id);
     $from = $user->fanssystem_from()->count();
     $to = $user->fanssystem_to()->count();
     $bFocus = Fanssystem::isFocus($id);
     $fans = array();
     $fans[0] = $from;
     $fans[1] = $to;
     $fans[2] = $bFocus;
     $topics = Topic::whose($user->id)->recent()->paginate(6);
     $favoritetopics = $user->favoriteTopics()->paginate(6);
     $replies = Reply::whose($user->id)->recent()->limit(6)->get();
     if (is_null($resume)) {
         return View::make('usersinfo.show', compact('user', 'topics', 'replies', 'favoritetopics', 'fans'));
     }
     $skill = Skill::where('id', '=', $resume->skill_id)->first()->skill;
     if (!is_null($resume)) {
         $projects = $resume->userproject()->get();
         return View::make('usersinfo.show', compact('user', 'topics', 'replies', 'resume', 'projects', 'favoritetopics', 'skill', 'fans'));
     }
     return View::make('usersinfo.show', compact('user', 'topics', 'replies', 'resume', 'favoritetopics', 'fans'));
 }
开发者ID:fcode520,项目名称:phphub,代码行数:24,代码来源:UsersController.php


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