get()->select( ['id', 'attributes'] )->toArray(); } public static function getAttr($id) { return self::query()->where('id', $id)->value('attributes') ?? ''; } public static function getData(): array { return self::query()->select(['id', 'attributes'])->get()->toArray(); } }