अगर आपके रिश्ते को सही तरीके से परिभाषित किया गया है तो फिलिंग कोड काम करना चाहिए:
$posts = Post::whereHas('postWriters', function($query) use($arrayOfWriterIds_IFollow) {
$query->whereIn('writer_id', $arrayOfWriterIds_IFollow);
})
->orderBy('submitTimestamp', 'desc')
->take(20)
->get();