本文整理汇总了PHP中app\Posts::whereNotIn方法的典型用法代码示例。如果您正苦于以下问题:PHP Posts::whereNotIn方法的具体用法?PHP Posts::whereNotIn怎么用?PHP Posts::whereNotIn使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\Posts
的用法示例。
在下文中一共展示了Posts::whereNotIn方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: viewNewestPosts
public function viewNewestPosts()
{
if (auth() && auth()->user() && User::find(auth()->user()->getAuthIdentifier())['admin'] >= ConstsAndFuncs::PERM_ADMIN) {
$Posts = Posts::orderBy('id', 'desc')->paginate(5);
$newpost = Posts::orderBy('visited', 'dsc')->take(5)->get();
$paginateBaseLink = '/';
return view('userindex')->with(compact(['Posts', 'newpost', 'paginateBaseLink']));
} else {
$hidden_course_ids = array();
$courses = Courses::where('Hidden', '=', 1)->get()->toArray();
foreach ($courses as $value) {
$hidden_course_ids = array_merge($hidden_course_ids, [$value['id']]);
}
$Posts = Posts::whereNotIn('CourseID', $hidden_course_ids)->where('Hidden', '=', 0)->orderBy('id', 'desc')->paginate(5);
$newpost = Posts::whereNotIn('CourseID', $hidden_course_ids)->where('Hidden', '=', 0)->orderBy('visited', 'dsc')->take(5)->get();
$paginateBaseLink = '/';
return view('userindex')->with(compact(['Posts', 'newpost', 'paginateBaseLink']));
}
}