• Gravatar

Gravatar

Plugin information

by Adam Weston

Admin panel

A UI Avatar provider to replace Filament's default avatar url provider with one for Gravatar.

Support

#gravatar on Discord

Views

1768

License

MIT

Documentation

Filament Gravatar

Replace Filament's default avatar url provider with one for Gravatar.

Installation

First, install the plugin with composer.

composer require awcodes/filament-gravatar

Next, update your Filament config file to use the new avatar provider.

'default_avatar_provider' => \FilamentGravatar\UiAvatarsProvider::class,

Global Defaults

You can modify the global defaults, should you need to by publishing the config file.

php artisan vendor:publish --tag="filament-gravatar-config"

Additional Info

You can also use the FilamentGravatar\Gravatar class by itself should you need to outside of Filament.

FilamentGravatar\Gravatar::get(
string $email = null,
int $s = 80,
string $d = 'mp',
string $r = 'g',
bool $img = false,
$atts = []
);