I have some questions... #4
-
If I was going to try to use Plaid with Laravel Models, Migration Tables, etc. How would I go about using your package so that I can receive requests and render responses with plaid? I also wanted to know... How would I go about using your package with Plaid Link where a user can login with something like Jetstream and click on a button to use link and have all of their data come in through the user interface in tables for Models..? I am also planning on using Filament Admin for this... Sorry for all the questions but I am having a hard time trying to do this with Plaid and I am having a lot of errors in doing so... Also, does your package not provide a config file to publish so that I can retrieve your vendor files for models and such in the root folder? Maybe I am just a noob or something but how do I actually go about using your package... I would really appreciate your help, thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 26 replies
-
Hi @andrewdwallo, thanks for your question! For an example on how to use the interface, check out tests/Feature/TransactionTest.php It shows the process of obtaining an access token and then performing a call to Plaid's transactions/get entry point. The result is an array as described in the Plaid documentation at https://plaid.com/docs/ How your application handles that information, including storing it in your Models is entirely up to you. |
Beta Was this translation helpful? Give feedback.
Hi @andrewdwallo, thanks for your question!
There are no models. This is simply an interface to the Plaid API. The only configuration is the environment settings described at https://github.com/abivia/plaid#usage
For an example on how to use the interface, check out tests/Feature/TransactionTest.php It shows the process of obtaining an access token and then performing a call to Plaid's transactions/get entry point. The result is an array as described in the Plaid documentation at https://plaid.com/docs/
How your application handles that information, including storing it in your Models is entirely up to you.