6 Replies
If you mean to replace the backend from Laravel to these platforms I don't think it's possible
but I f you meant to use some of their features like the Database then you may found many work arounds (but not an official ways)
for the Database for example filament tables can deal with data from external APIs but you will lose most the tables features
read this to get an Idea:
https://laraveldaily.com/post/filament-load-table-data-from-3rd-party-api
Laravel Daily
Filament: Load Table Data From 3rd Party API
in general filament is built upon Laravel and its ORM which make it hard to deal with external BAAS platforms with it as I believe.
Isn't there a way to wrap supbase/appwrite with eloquent so that It works with filament
It is possible to use Laravel ORM with none-database data using a package like Sushi:
https://github.com/calebporzio/sushi
but ofc you wont get all the eloquent's features
GitHub
GitHub - calebporzio/sushi: Eloquent's missing "array" driver.
Eloquent's missing "array" driver. Contribute to calebporzio/sushi development by creating an account on GitHub.
and its mainly for static data and uses SQLite under the hood