nova eloquent table-less data from external source #3315
Answered
by
crynobone
xerox-xeon
asked this question in
Q&A
-
I want to display table via external data from HTTP rest API like this:https://stackoverflow.com/questions/47772103/laravel-eloquent-table-less-data-from-external-source |
Beta Was this translation helpful? Give feedback.
Answered by
crynobone
Apr 1, 2021
Replies: 1 comment
-
Laravel Nova can only handle Eloquent based model. To do this you might need to use some tool to convert API response to Eloquent, maybe using https://github.com/calebporzio/sushi Also you may look into creating custom Tool to handle displaying external API data. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
crynobone
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Laravel Nova can only handle Eloquent based model.
To do this you might need to use some tool to convert API response to Eloquent, maybe using https://github.com/calebporzio/sushi
Also you may look into creating custom Tool to handle displaying external API data.