Skip to content

Instantly share code, notes, and snippets.

@techjewel
Last active August 3, 2021 13:21
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techjewel/e7513540fe5864c24770331338ba7965 to your computer and use it in GitHub Desktop.
Save techjewel/e7513540fe5864c24770331338ba7965 to your computer and use it in GitHub Desktop.
<?php
function myFluentCrmTagIdBySlug($slug) {
$tag = \FluentCrm\App\Models\Tag::where('slug', $slug)->first();
if($tag) {
$tagId = $tag->id;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment