本文整理汇总了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;
}
示例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]);
}
示例3: findByUserAndId
public static function findByUserAndId($user, $id)
{
return App::where('id', '=', $id)->where('user_id', '=', $user->id)->firstOrFail();
}