Are you using laravels timestamps (created_at, updated_at)? If so, there's a handy eloquent/qb method called ->latest() which will give you that.
If not, you'd have to
->order_by('datetime', 'desc')
And if you only want the single most recent
->order_by('datetime', 'desc')
->limit(1);