Is there a package that implements API data access like Eloquent?
Example:
We have two systems, A and B. System A has a table "posts" and has an API resource implementation. Is there a package that implements this integration to be used in B to access this "posts" API like Eloquent Model?
In B, want to write the access to A like:
Post::where('title', 'Post Title')->where('published_at', '2022-02-03')->get();