Custom query table

How can I create a custom Table using a custom query (loading records through a stored procedure). I need to add this table to a page. I tried to add the query to the table but the method needs an Eloquent query builder instead of a plain query builder. Is this possible, is anyone doing this?
4 Replies
awcodes
awcodes10mo ago
Can’t you do a raw query with eloquent.?
Jean Roumeau
Jean Roumeau10mo ago
I guess. But in order to build the table I need an eloquent model (getTableFiltersForm). Or is there a way to disable the model completely? (I dont need filtering on this custom table nor pagination)
awcodes
awcodes10mo ago
Probably not. Filament tables requires an eloquent query. Can the done with sushi though.
Jean Roumeau
Jean Roumeau10mo ago
Ah ok. Yes probably Sushi is the best option. Thanks.