Pagination is removing Models relations

What seems to be the problem:
When using Livewire Paginate my paginated Model loses all its relationsships.
Before:
$this->order->user; // exists
When calling paginate() the user relationship is gone.
$this->order->user // does not exist anymore.
Steps to Reproduce:
use Livewire\WithPagination;

$this->orders->paginate($this->perPage);

// inside my livewire blade 
$this->orders->user; // is not existing anymore

Are you using the latest version of Livewire:

Do you have any screenshots or code examples: