how to integrate existing APIs with filament

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.
Was this page helpful?