multiple select inside a table

//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?
Was this page helpful?