https://ja.gravatar.com/support/what-is-gravatar/
Model User.php
public function getGravatarAttribute(){ $hash = md5(strtolower(trim($this->attribute['email']))); return "http://www.gravatar.com/avatar/$hash"; }
Viewのimg srcでAuth::user()->gravatar()と書くと、gravatarに登録した画像が表示される
公式ドキュメント
https://ja.gravatar.com/site/implement/images/
https://www.gravatar.com/avatar/${hashedUrl}
あんまり使ってるの見たことないけど、アバターのマイナンバーみたいな発想は面白い