happytodev/filament-social-networks
Filament plugin for managing and displaying social network links in your Laravel admin. Configure common platforms with icons/URLs, keep profiles consistent across your app, and render social links where needed with a simple, reusable setup.
Pros:
Cons:
happytodev/filament-social-networks) with minimal configuration.social_links table or similar; may require migration adjustments if existing schemas differ.filament/filament via Composer).composer.json constraints).composer require happytodev/filament-social-networks.php artisan vendor:publish --provider="HappyToDev\FilamentSocialNetworks\FilamentSocialNetworksServiceProvider".use HappyToDev\FilamentSocialNetworks\Forms\Components\SocialNetworks;
public static function form(Form $form): Form {
return $form->schema([
SocialNetworks::make('social_links')->required(),
// other fields...
]);
}
socialable trait).Schema::table('users', function (Blueprint $table) {
$table->json('social_links')->nullable();
});
social_links JSON column if used).README.md (if available) for installation/configuration.How can I help you explore Laravel packages today?