I have been using Eloquent ORM for some time now and I know it quite well, but I can\'t do the following, while it\'s very easy to do in Fluent.
I h
In your Eloquent model you can chain the orderBy column if you include the table name:
return $this->belongsToMany('App\Post')->withTimestamps()->orderByDesc('posts.created_at');