Andrew
Andrew
Maybe better return from Database::getGroupTranslationsFor next structure. Because it is more in line with the file driver ```php $translationArray = []; $translations->map(function ($translations) use (&$translationArray) { $translations->map(function ($translation) use (&$translationArray)...
@dissolvdgrl the problem is not the size of the files, but that this library is trying to compose objects with additional information that is obtained only when reading each file...
@yupe к примеру надо отдельно собирать cтрану и индекс для физических лиц, либо если магазин работает с юридическими лицами надо в заказе юридический адрес, кпп, инн, бик, банк, счет и...
На мой взгляд это сомнительно. Есть знакомый магазин с кол-вом товара более 40 тыс. если их все вывести браузер просто умрет при отрисовке элементов
Ну тогда можно реализовать, что если кол-во записей больше N (пагинатор все равно считает кол-во записей), то тогда просто не выводить кнопку "Все"
@zenmasterjobo I'll try to explain my problem in code. ```php $apiClient = new \Square\SquareClient([ 'customUrl' => 'https://connect.squareup.com', 'environment' => 'production', 'accessToken' => $accessToken, ]); $response = $apiClient->getPayoutsApi()->getPayout($payoutId); assert($response instanceof \Square\Http\ApiResponse);...
@zenmasterjobo Thanks, hopefully the API will be fixed. Can you suggest how to get a list of payments and orders for payout more efficiently? My current method - get payout...