Plugins
Gravatar
Replace Filament's default avatar url provider with one for Gravatar.
Panel Builder
Dark theme support
Yes
Multi language support
No
Compatible with the latest version
Supported versions: 2.x - 3.x
Documentation

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

gravatar-og

#Installation

First, install the plugin with composer.

composer require awcodes/filament-gravatar

Next, add the GravatarProvider to your panel.

use Awcodes\FilamentGravatar\GravatarProvider;
 
public function panel(Panel $panel): Panel
{
return $panel
->defaultAvatarProvider(GravatarProvider::class)
->plugins([
GravatarPlugin::make(),
])
}

#Global Defaults

You can modify the global defaults by using the following methods on the GravatarPlugin.

public function panel(Panel $panel): Panel
{
return $panel
->plugins([
GravatarPlugin::make()
->default('robohash')
->size(200)
->rating('pg'),
])
}

#Additional Info

You can also use the Awcodes\FilamentGravatar\Gravatar class by itself should you need to outside a panel.

Awcodes\FilamentGravatar\Gravatar::get(
string $email = null,
int $size = 80,
string $default = 'mp',
string $rating = 'g',
bool $asImage = false,
array $attributes = []
);
Adam Weston

Adam is a full-stack web developer (with a focus on Laravel) who has been coding for close to 20 years. He is a core Filament team member as well and has authored numerous plugins for Filament such as Curator, Tiptap Editor and Table Repeater, to name a few. You can learn more about Adam on his website.

12
Plugins
1,017
Stars
More from this author
Featured Plugins