$games = Game::whereKey($gameIds)->withCount('activeKeys')->select(['name', 'id','active_keys_count'])->get();
böyle bir sorguda laravel ile hatasını alıyorum
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'active_keys_count' in 'field list' (Connection: mysql, SQL: select name
, `id
withCount fonksiyonu ile aldığım için active_keys_count bu isimle bir data oluşuyor ben bunu select ile almaya çalıştığımda hata alıyorum
aggregate fonksiyon ile oluşmuş data'yı select ile nasıl alabilirim?