keithbrink / amazon-mws-laravel

A Laravel library for Amazon's MWS web services, supporting Laravel 5-8+
Apache License 2.0
27 stars 23 forks source link

Patch amz ord 1 #36

Closed orenlande closed 4 years ago

orenlande commented 4 years ago

Sorry for late PR, was completely forgot about it. Referring to the issue at https://github.com/keithbrink/amazon-mws-laravel/issues/31.

Next step would to add some more useful docs to the readme.

keithbrink commented 4 years ago

I'm going to close this PR in favour of getting the data like so:

$order_list = new AmazonOrderList(....);
...
$order_list->getList();
foreach($order_list as $order) {
    $order_data = $order->getData();
}