Laravel Jensseger Mongodb belongsToMany retorna uma matriz vazia

Estou tentando usar uma relação belongsToMany, da seguinte maneira: Modelo com relação belongsToMany:

namespace App\Models;
use Illuminate\Notifications\Notifiable;
use Laravel\Passport\HasApiTokens;
class Notification extends \Jenssegers\Mongodb\Eloquent\Model
{
    use Notifiable, HasApiTokens;
    protected $collection = 'myDb.notifications';
    protected $fillable = [ ];
    protected $hidden = [  ];

    /**
    * List of involved users
    */
    public function participants()
    {
      return $this->belongsToMany(User::class);
    }
}

Criando um modelo:

$notification=new Notification();
....
$notification->participants()->attach(["5b13fb4393782d5e9010835d","5b13146f93782d29254c8cb2"]);
$notification->save();

Dá:

{
    ......
    "user_ids": [
        "5b13fb4393782d5e9010835d",
        "5b13146f93782d29254c8cb2"
    ],
    "updated_at": "2018-06-07 12:32:19",
    "created_at": "2018-06-07 12:32:19",
    "_id": "5b1925d393782d24b4514a16"
}

Portanto, os IDs são anexados corretamente, quando tento carregá-los com ansiedade:

Notification::where('_id','=','5b1925d393782d24b4514a16')->with(['participants'])->get()

Eu recebo uma matriz vazia para a relação:

[
    {
        "_id": "5b1925d393782d24b4514a16",
        ....
        "updated_at": "2018-06-07 12:32:19",
        "created_at": "2018-06-07 12:32:19",
        "participants": []
    }
]

Também verifiquei que os usuários especificados realmente existem e devem ser "carregáveis", usando:

User::whereIn('_id',["5b13fb4393782d5e9010835d","5b13146f93782d29254c8cb2"])->get()

O que dá aos dois usuários como esperado ....

questionAnswers(2)

yourAnswerToTheQuestion