How can I get a quantity of items ordered from the newest to the oldest (currently it appears from the oldest to the newest) in laravel 5.4
in the controller, the function of the home page home is like this:
public function home(){
$blogs = Blog::paginate(7);
return view('welcome',[
'blogs' => $blogs,
]);