我是Laravel的新手,并认为购买Dayle Rees的Codehappy电子书很酷。
我刚刚完成了博客教程并思考了他如何从Post模型中检索帖子。来自.net(ASP.NET MVC)的背景我认为在热切加载作者的同时订购帖子非常重要。
他渴望像这样加载模型。
$posts = Post::with('author')->get();
我的问题是你在哪里可以使用“order_by”条款? order_by本身在我使用时起作用:
$posts = Post::order_by('id', 'desc')->get();
此致 RAVEN
答案 0 :(得分:8)
我设法解决它:
$posts = Post::with('author')->order_by('id', 'desc')->get();