chats()->getQuery(); if ($searchKeyword) { $chats = $chats->where('title', 'LIKE', "%{$searchKeyword}%"); } $results = $chats->latest()->paginate(); return $results->through(fn ($chat) => ChatResponseDto::fromModel($chat)); } }