DESC laravel

PHP
$posts = Post::orderBy('id', 'DESC')->get();$posts = Post::orderBy('id', 'DESC')->get();
->orderBy('id', 'DESC');/**
 * Show the application dashboard.
 *
 * @return \Illuminate\Http\Response
 */
public function index()
{
    $messages = Message::select("*")
                            ->where('receiver_id',$id)
                            ->orderBy('created_at', 'desc')
                            ->get();
  
    dd($messages);
}
Source

Also in PHP: