multiple select inside a table

//this is code from $form
Select::make('tags')
->relationship(name: 'author', titleAttribute: 'name')
->multiple()
//this is code from $form
Select::make('tags')
->relationship(name: 'author', titleAttribute: 'name')
->multiple()
can I do this in a Table I want the user to add tags while browsing the table, not have to enter the edit page Table only has a simple select column https://filamentphp.com/docs/3.x/tables/columns/select could a Custom Column achieve this?
1 Reply
Mohamed Ayaou
Mohamed Ayaou3mo ago
As you said tables has a simple select column not meant to an advanced logic but you still can you the same blade select component as a custom column view

Did you find this page helpful?