Skip to content

Instantly share code, notes, and snippets.

@tushargugnani
Created February 19, 2023 03:56
Show Gist options
  • Save tushargugnani/3f8d8d3e4fe8e9f0840c2d1b4faea989 to your computer and use it in GitHub Desktop.
Save tushargugnani/3f8d8d3e4fe8e9f0840c2d1b4faea989 to your computer and use it in GitHub Desktop.
avatarUrl function in User model
public function avatarUrl()
{
return $this->avatar
? Storage::disk('public')->url($this->avatar)
: 'https://www.gravatar.com/avatar/' . md5(strtolower(trim($this->email)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment