本文整理汇总了PHP中Notice::select方法的典型用法代码示例。如果您正苦于以下问题:PHP Notice::select方法的具体用法?PHP Notice::select怎么用?PHP Notice::select使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Notice
的用法示例。
在下文中一共展示了Notice::select方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: read
public function read()
{
// 需要分页
$paginator = Notice::select('notices.id', 'notices.title', 'notices.created_at')->leftJoin('user_read_notice', function ($join) {
$join->on('notices.id', '=', 'user_read_notice.notice_id');
})->where('user_read_notice.user_id', Sentry::getUser()->user_id)->orderBy('created_at', 'desc')->paginate(static::$default_per_page);
$notices = $paginator->getCollection();
return View::make('pages.message-center.message.message', ['notices' => $notices, 'paginator' => $paginator]);
}
示例2: home
public function home()
{
$notices = Notice::select('id', 'title')->orderBy('created_at', 'desc')->limit(2)->get();
if (Sentry::check()) {
$message_url = '/message-center/message/all';
} else {
$message_url = '/message-center/message/home';
}
return View::make('pages.login', ['notices' => $notices, 'message_url' => $message_url]);
}