コード例 #1
0
ファイル: PostController.php プロジェクト: AlusaChen/test-lar
 public function index($category = '')
 {
     $posts = Post::list_paginate($category);
     return view('post.list', ['posts' => $posts]);
 }