how to create a page with a table to list clients
Hi which tutorial i can follow to create a new page on filament named Clients, and when i click it should show a data table (i already got my db in mysql with data) how i can show exactly all records from that mysql table into a data table in filament? thank you
Solution:Jump to solution
Filament works with Laravel's ORM "Eloquent". You need to define models which will be mapped to an SQL query.
2 Replies
i followed this https://filamentphp.com/docs/3.x/panels/resources/getting-started but how i tell i want to select * from a specific table?
Solution
Filament works with Laravel's ORM "Eloquent". You need to define models which will be mapped to an SQL query.