Solution:
latest() is a Eloquent\Builder method. Blog::all() is an Eloquent\Collection instance.
latest()
Eloquent\Builder
Blog::all()
Eloquent\Collection
For your code to work, it should be:
Blog::latest()->limit(5)->get();