Open
Description
when i use toggle function in many to many relationship it attaches id as property has a value empty array
and it doesn't behave as expected
public function toggleMember(Board $board , Request $request)
{
$board->members()->toggle([$request->member_id]);
return response()->Json(Board::find($board->_id));
}