with('profile:user_id,avatar_hash') ->whereRaw('LOWER(username) = ?', [$normalized]) ->where('is_active', true) ->whereNull('deleted_at') ->firstOrFail(); return response()->json( $this->activities->feedForUser( $user, (string) $request->query('filter', 'all'), (int) $request->query('page', 1), (int) $request->query('per_page', UserActivityService::DEFAULT_PER_PAGE), ) ); } }