What if you try this:
$users = User::role('user')
->with([
'chats' => function ($query) {
$query->orderBy('id', 'DESC');
}])
->paginate(25);
->get()
these are the docs for the basic usage of the package https://spatie.be/docs/laravel-permission/v5/basic-usage/basic-usage