コード例 #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $pages = Page::paginate(15);
     return view('admin.page.index', compact('pages'));
 }
コード例 #2
0
ファイル: Pages.php プロジェクト: nova-framework/cms
 public function index()
 {
     $pages = Page::paginate(25);
     return $this->getView()->shares('title', 'Manage Pages')->withPages($pages);
 }