I have some child pages that have categories associated with them. For categories that have more than 1 word e.g "Test Category" I need the output to be 1 word with the spaces separated by dashes e.g "Test-Category"
How can the function be rewritten to handle this?
public function CategoriesList() {
if ($this->Categories()->exists()) {
return implode(', ', $this->Categories()->column('Title'));
}
}