'How to pagination TWILIO Conversations and its messages in PHP?

I am having issues in paginating the TWILIO Conversations and Its messages. I have tried to paginate but all the pages are giving same results. Can someone please help ?

$conversations = $twilio
    ->conversations
    ->v1
    ->services(TWILIO_CHAT_SERVICE_SID)
    ->conversations
    ->read($page_size, $page);


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source