Skip to content

Instantly share code, notes, and snippets.

@neverything
Last active July 8, 2024 06:32
Show Gist options
  • Save neverything/a9fa57e871add54eaa79108e9fd8b6f1 to your computer and use it in GitHub Desktop.
Save neverything/a9fa57e871add54eaa79108e9fd8b6f1 to your computer and use it in GitHub Desktop.
<?php
namespace App\Providers;
use App\FaviconFetcher\Drivers\UnavatarServices;
use AshAllenDesign\FaviconFetcher\Facades\Favicon;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function register(): void
{
Favicon::extend('unavatar-services', new UnavatarServices());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment