jeroen-hso
jeroen-hso
Hi, I would like to use your package to monitor Excel imports. Are there known issues between Laravel Excel and this package? I have implemented ShouldQueue and IsMonitored, but jobs...
``` public function getCustomerByCustomerid($customerid) { $result = $this->sendRequest('/customers?customerid=' . urlencode($customerid)); if (is_array($result['data']) && count($result['data']) == 1) { $result['data'] = $result['data'][0]; } else { $result['data'] = null; } return $result; }...
We are upgrading to Magento 2.4.4 and authorization is not working in staging environment. Is this related to https://github.com/grayloon/magento-laravel-api/issues/86? Is there a workaround to use this package with Magento 2.4.4?...