Im trying to select only specific attributes on the many-to-many relation users, just like in one-to-one. But using select() on belongsToMany
users
select()
belongsToMany
Computer::with(["users" => function($query){ $query->select('column1','column2','...'); }])->get();