I have table of dogs in my DB and I want to retrieve N latest added dogs.
N latest added dogs
Only way that I found is something like this:
Do
Dogs::orderBy('created_at','desc')->take(5)->get();