It can be done using latest() method. Here function parameter can be empty or it can have field name upon which sorting will be descending. Example below
// last row sorted descending with ID with empty parameter Post::latest()->first() //or last row sorted descending by given field name which is given title here Post::latest('title')->first()