コード例 #1
0
 /**
  * 随机文章。
  *
  * @param  View  $view
  * @return Response
  */
 public function randDocumentget($view, $limit = 5)
 {
     $view->with('randlists', Blog::randGet($limit));
 }
コード例 #2
0
ファイル: IndexController.php プロジェクト: shsrain/SimpleCms
 /**
  * 博客文章搜索
  *
  * @return Response
  */
 public function search()
 {
     return view('blog::simpleblog.Blog.Index.search', ['document' => Blog::searchGet(), 'searchkeywords' => Request::input('searchkeywords')]);
 }