Generates a URL-friendly slug from the string.
String toSlug({String delimiter = '_'}) { return validate().trim().toLowerCase().replaceAll(' ', delimiter); }