|GroupMember newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|GroupMember newQuery() * @method static \Illuminate\Database\Eloquent\Builder|GroupMember query() * @method static \Illuminate\Database\Eloquent\Builder|GroupMember whereApprovedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupMember whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupMember whereGroupId($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupMember whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupMember whereJoinRequest($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupMember whereLocalGroup($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupMember whereLocalProfile($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupMember whereProfileId($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupMember whereRejectedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupMember whereRole($value) * @method static \Illuminate\Database\Eloquent\Builder|GroupMember whereUpdatedAt($value) * * @mixin \Eloquent */ class GroupMember extends Model { use HasFactory; public function group() { return $this->belongsTo(Group::class); } }