Shift with red gradient lettering
Loading navigation...

Use latest/oldest

Laravel

Convert your code to use the expressive latest and oldest methods instead of their respective orderBy sorting methods.

Before

Post::orderBy('published_at', 'DESC');
Comment::orderBy('created_at');
User::orderBy('status');

After

Post::latest('published_at');
Comment::oldest();
User::oldest('status');

← Back to the Workbench Tasks