Skip to content

Instantly share code, notes, and snippets.

@m5lil
Last active June 29, 2021 00:11
Show Gist options
  • Save m5lil/c309db975e3386fb09f76edeea90d339 to your computer and use it in GitHub Desktop.
Save m5lil/c309db975e3386fb09f76edeea90d339 to your computer and use it in GitHub Desktop.
[Gravatar pic] #others #gravatar

https://www.gravatar.com/avatar/' . md5(auth()->user()->email) . '?d=mm'

function gravatar(string $name): string
{
    $gravatarId = md5(strtolower(trim($name)));

    return 'https://gravatar.com/avatar/'.$gravatarId.'?s=240';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment