I fixed it.

The problem was that I should make group_id before user_id in model Group.php

        return $this->belongsToMany(
            User::class,
            'group_user',
            'group_id'
            'user_id',
        );
    }```

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top