コード例 #1
0
ファイル: UserPresenter.php プロジェクト: SocietyCMS/User
 /**
  * @return mixed
  */
 public function avatar()
 {
     return $this->entity->getFirstMediaUrl('profile', 'square') ?: Avatar::create($this->fullname())->toBase64();
 }
コード例 #2
0
ファイル: User.php プロジェクト: laravolt/epicentrum
 public function getAvatar()
 {
     return Avatar::create($this->name)->toBase64();
 }