How to make new tag in select input

I have a case where i made a select input that is searchable but the problem is when i search something that does not exist in mine db i want to get an option that will say add new tag, is this possible in the filament, mine code looks
Select::make('tags.title')
  ->relationship('tags', 'title')
  ->label('Tags')
  ->searchable()
  ->multiple(),
Was this page helpful?