我是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();
问候
掠夺
我设法解决它:
原文链接:https://www.f2er.com/laravel/136705.html$posts = Post::with('author')->order_by('id','desc')->get();