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


PHP App::where方法代码示例

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


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

示例1: authorize

 /**
  * Determine if the user is authorized to make this request.
  *
  * @return bool
  */
 public function authorize()
 {
     if ($this->route('app')) {
         $id = $this->route('app');
         $user = $this->user();
         return App::where('id', '=', $id)->where('user_id', '=', $user->id)->exists();
     }
     return $this->user() ? true : false;
 }
开发者ID:3x14159265,项目名称:telegramlogin,代码行数:14,代码来源:AppRequest.php

示例2: appView

 public function appView($app_id)
 {
     $appInfo = App::dataHandle(App::find($app_id));
     if (!$appInfo) {
         header('Location:' . action('App\\Http\\Controllers\\HomeController@index'));
     }
     $commendApps = App::dataHandle(App::where('category_id', '=', $appInfo->category_id)->where('id', '!=', $app_id)->orderBy('download', 'desc')->take(4)->get());
     return view('index.appView')->with(['appInfo' => $appInfo, 'commendApps' => $commendApps]);
 }
开发者ID:kevinwan,项目名称:che123,代码行数:9,代码来源:IndexController.php

示例3: findByUserAndId

 public static function findByUserAndId($user, $id)
 {
     return App::where('id', '=', $id)->where('user_id', '=', $user->id)->firstOrFail();
 }
开发者ID:hcvst,项目名称:telegramlogin,代码行数:4,代码来源:App.php


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