Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
簡単な質問 - Laravel 4 で 'id' を降順で並べ替えるにはどうすればよいですか?
私のコントローラーの関連部分は次のようになります。
$posts = $this->post->all()
私が理解しているように、あなたはこの行を使用しています:
->orderBy('id', 'DESC');
しかし、それは私の上記のコードにどのように適合しますか?
これが私がそれについて行く方法です。
$posts = $this->post->orderBy('id', 'DESC')->get();