예제 #1
0
 public function index($category = '')
 {
     $posts = Post::list_paginate($category);
     return view('post.list', ['posts' => $posts]);
 }