Laravel 8: Method Illuminate\Database\Eloquent\Collection::latest does not exist

Solution:

latest() is a Eloquent\Builder method. Blog::all() is an Eloquent\Collection instance.

For your code to work, it should be:

Blog::latest()->limit(5)->get();