Is there a way to store the typed in values of a tags field so they are url friendly e.g hypens instead of spaces and lowercase ?
filters:
label: Filters
type: tags
Or could / should this be done in the controller ?
$tags = $projects->pluck('tags', ',', true);
$projects = $projects->filterBy('tags',$tag, ',');