Fazaa
Avatar Profile not showing using Edit Profile Plugin
filesystems.php :
'public' => [
'driver' => 'local',
'root' => storage_path('app'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
'throw' => false,
],
'links' => [
public_path('storage') => storage_path('app'),
],
User Model:
public function getFilamentAvatarUrl(): ?string
{
return Storage::url(path: $this->avatar_url);
}
12 replies