-Ni3K-
choose filament
ahhh I see. I remembered see Dan saying somewhere that with the introduction of v4, the filament tables would be able to work with API data sources. I was wondering if there would be the package to be that API server if I'm making sense
18 replies
choose filament
with filament, there are somethings that cant really be done at scale via API, like tables. I used jquery's table because it is much more convenient than having to sync up 2 data sources, sushi's sqlite and actual backend table. so we chose another table instead. It is a much easier approach to the whole ordeal than having to deal with possible mismatched states between the 2 datasources
18 replies
choose filament
from what I understand, there currently isnt any datatable apart from jquery's that can do what I need. rappasoft/laravel-livewire-tables and livewire Powergrid is quite similar to something like filament's table where it needs Eloquent to function. My app's architecture is structured in a way that the only source of data are API calls. Something like Yajra's backend adapter for the jquery datatable works great for my particular use case
18 replies
choose filament
I am using Filament (STRICTLY for the Frontend) with my microservices right now in one of my projects. I can tell you that it is definitely a lot less work than if you were to start from scratch. You would realistically only need to find a substitute for the table. For creating and updating, you can always use Filament Action/Page with Livewire to create forms and handle the submission. As for the table, I use jquery datatable.
18 replies
How to disable Per page -> All
Hey Eric, have you tried something like this
public function table(Table $table): Table
{
return $table
->paginated([10, 25, 50, 100]);
}
https://filamentphp.com/docs/3.x/tables/advanced
6 replies