📅  最后修改于: 2022-03-11 14:54:17.696000             🧑  作者: Mango
public function index()
{
$posts = Post::orderBy('title','desc')->paginate(10);
return view('posts.index')->with('posts',$posts);
}