Md Abu Ahsan Basir

Results 69 comments of Md Abu Ahsan Basir

Hi @4kasun, Thanks for creating the issue. This package created based on woccommerce rest api. So only all functionality available that mentioned the doc. Here is the doc https://woocommerce.github.io/woocommerce-rest-api-docs/#introduction

Hello @suryavardhan, Thanks for creating the issue. This package created based on WooCommerce Rest API. I didn't check any custom ENDPOINT so I think it's not possible at this moment....

Hello @andreasemprofile, Thanks for creating the issue. Actually, you can't use the links() method because it doesn't exist in this package. You can get paginate data in the meta section....

If you check to paginate method then you can get an idea of how it works. When you call paginate() then it returns an object with two property `meta` and...

Hi @mcpuishor, Thanks for creating pull request. Can you explain what's the benefit that user can get from your changes since they can simply change their store URL and other...

Okay. Can you see this issue #12 and let me know what problem you faced here? Currently I'm passing very busy schedule. I'll check your changes ASAP.

Hello @nikuzz, Currently some sub-model like` Term` not working paginate like `Product::paginate()`. I'm a little bit busy. I'll add it soon. Thanks for the patient.

Good news. New version (v3.0) released. Now you can use pagination for all. Also you can use laravel collection (filter, map, all of the method of collection and lazy collection)....

From version 3, By default return collection. You can return array in two ways 1. Using `withOriginal` ``` Term::withOriginal()->get() ``` 2. Using `toArray` ``` Term::all()->toArray() ```

Try ``` $categories = Category::paginate()->toArray(); ``` OR ``` $categories = Category::withOriginal()->paginate(); ``` Is it working?