Level 75
The query Builder chapter has examples of orderby.
Example from the documentation
$users = DB::table('users')
->orderBy('name', 'desc')
->get();
Reference
https://laravel.com/docs/8.x/queries#ordering-grouping-limit-and-offset
A regular query
....ORDER BY id DESC ")..........