本文整理汇总了PHP中Branch::take方法的典型用法代码示例。如果您正苦于以下问题:PHP Branch::take方法的具体用法?PHP Branch::take怎么用?PHP Branch::take使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Branch
的用法示例。
在下文中一共展示了Branch::take方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getIndex
public function getIndex()
{
if (Auth::user()->grade == 1) {
$branch = Branch::take(10)->get();
} else {
$branch = Branch::where('user_id', Auth::user()->id)->take(10)->get();
}
// 提醒
//
$notice = Notice::where('user_id', Auth::user()->id)->where('read', '0')->orderBy('timeline', 'desc')->take(10)->get();
return View::make('index')->with('goods', Good::orderBy('store')->take(10)->get())->with('branch', $branch)->with('notice', $notice);
}