示例#1
0
 public function notices()
 {
     $notices = Notices::paginate(6);
     //分页显示
     return View::make('home.notice')->with('notices', $notices);
 }
示例#2
0
 public function noticeEdit()
 {
     $notices = Notices::paginate(10);
     return View::make('admin.notice-edit')->with('notices', $notices);
 }