eloquent model sort by ascending order

PHP
$posts = Post::orderBy('id', 'DESC')->get();
->orderBy('id', 'DESC');
Source

Also in PHP: