Skip to content

Instantly share code, notes, and snippets.

@marianmirzacu
Created September 6, 2019 19:47
Show Gist options
  • Save marianmirzacu/df15ecfc9cfb5cb5351292a1ab90a2e2 to your computer and use it in GitHub Desktop.
Save marianmirzacu/df15ecfc9cfb5cb5351292a1ab90a2e2 to your computer and use it in GitHub Desktop.
makeSlugFromTitle - Laravel
public function makeSlugFromTitle($title)
{
$slug = Str::slug($title);
$count = Conversation::whereRaw("slug RLIKE '^{$slug}(-[0-9]+)?$'")->count();
return $count ? "{$slug}-{$count}" : $slug;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment