How can I integrate filament with existing APIs #12777
Unanswered
agonkovaci
asked this question in
Help
Replies: 2 comments 2 replies
-
You can use sushi https://filamentphp.com/community/how-to-consume-an-external-api-with-filament-tables |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Package
Panel builder
Package Version
3.2.75
How can we help you?
I have existing API app that I use for mobile applications. I want to integrate filament for some pretty views, but I want to integrate filament (create,update,list) with my existing API and not to default filament CRUD operation directly with eloquent models. For example I want to send submit form to my API p.s
Route::post('/teachers', [TeacherController::class, 'store']);
and edit to
Route::put('/teachers/{id}', [TeacherController::class, 'update']);
is it possible ? if Yes how can I do it, because Im not familiar with filament.
Beta Was this translation helpful? Give feedback.
All reactions