filafly/filament-logo-tools

Enhanced logo controls for Filament panel sidebars — icon logos, collapse button positioning, and inverted logo sections.

Installs: 1

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/filafly/filament-logo-tools

v0.0.1 2026-02-19 21:02 UTC

This package is auto-updated.

Last update: 2026-02-19 21:29:48 UTC


README

Latest Version on Packagist Total Downloads

A Filament plugin that adds enhanced logo and sidebar controls to your panel. All features are implemented through Filament's native plugin system, render hooks, and CSS — no view overrides required.

Requirements

  • PHP 8.2+
  • Filament v4 or v5

Installation

You can install the package via Composer:

composer require filafly/filament-logo-tools

Publish the assets:

php artisan filament:assets

Register the plugin in your panel provider:

use Filafly\LogoTools\LogoToolsPlugin;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugin(LogoToolsPlugin::make());
}

Icon Logo

Display a compact icon when the sidebar is collapsed, replacing the full brand logo. Only renders when the panel has sidebarCollapsibleOnDesktop() enabled.

LogoToolsPlugin::make()
    ->iconLogo('img/icon.svg')
    ->darkModeIconLogo('img/icon-dark.svg')
    ->iconLogoHeight('1.5rem')

iconLogo(string | Htmlable | Closure | null $logo)

The icon shown when the sidebar is collapsed. Accepts a file path (rendered as <img>), an Htmlable instance (rendered inline), or a Closure.

// Image path
->iconLogo('img/icon.svg')

// Inline SVG
->iconLogo(fn () => new HtmlString('<svg ...>...</svg>'))

darkModeIconLogo(string | Htmlable | Closure | null $logo)

A separate icon for dark mode. When set, the light and dark variants swap automatically. If not set, the single iconLogo is used in both modes.

iconLogoHeight(string | Closure | null $height)

The CSS height of the icon logo. Defaults to 1.5rem.

->iconLogoHeight('2rem')

Logo Section

Control the appearance of the logo section area in the topbar and sidebar header.

logoSectionBackground(array | string | bool $color = true)

Adds an inverted background to the logo section — dark background in light mode, light background in dark mode. The full brand logo's light/dark variants are swapped automatically to match.

// Default dark/light inversion
->logoSectionBackground()

// Filament color (array)
->logoSectionBackground(Color::Blue)

// Filament color name
->logoSectionBackground('primary')

// Hex code
->logoSectionBackground('#1e3a5f')

// CSS color function
->logoSectionBackground('oklch(0.5 0.2 240)')

// Tailwind class
->logoSectionBackground('bg-gray-900')

logoSectionBorder(string | Closure | null $color = 'rgb(0 0 0 / 0.1)')

Adds a vertical border on the trailing edge of the logo section. Works with or without logoSectionBackground().

// Default subtle black border
->logoSectionBorder()

// Custom color (e.g. for use with logoSectionBackground)
->logoSectionBorder('rgb(255 255 255 / 0.1)')

logoSectionPadding(string | Closure | null $padding)

Adds inline-start padding to the logo section.

->logoSectionPadding('1rem')

collapsedLogoSectionWidth(string | Closure | null $width)

Overrides the collapsed width of the logo section in the topbar. Filament's --collapsed-sidebar-width CSS variable (4.5rem) is not always visually accurate, so this lets you fine-tune alignment.

->collapsedLogoSectionWidth('5.5rem')

Collapse Button

Customize the sidebar collapse/expand button appearance and behavior.

collapseButtonPosition(CollapseButtonPosition $position)

Controls whether the collapse button appears to the left or right of the logo. Automatically set to Right when an icon logo is configured.

When positioned right, the button is rendered as a small edge button sitting on the border of the logo section — similar to apps like Linear and Notion.

use Filafly\LogoTools\Enums\CollapseButtonPosition;

->collapseButtonPosition(CollapseButtonPosition::Right)

collapseButtonStyle(CollapseButtonStyle | string $style)

Sets the shape of the collapse button when positioned on the logo section edge. Accepts the enum or a string ('circle', 'rounded', 'square').

use Filafly\LogoTools\Enums\CollapseButtonStyle;

->collapseButtonStyle(CollapseButtonStyle::Circle)   // full circle (default)
->collapseButtonStyle(CollapseButtonStyle::Rounded)  // slightly rounded corners
->collapseButtonStyle('square')                      // sharp corners

expandButtonIcon(string | BackedEnum | null $icon)

Overrides the icon shown on the expand button (when sidebar is collapsed).

use Filament\Support\Icons\Heroicon;

// Enum
->expandButtonIcon(Heroicon::OutlinedChevronRight)

// String
->expandButtonIcon('heroicon-o-arrow-right')

collapseButtonIcon(string | BackedEnum | null $icon)

Overrides the icon shown on the collapse button (when sidebar is expanded).

->collapseButtonIcon(Heroicon::OutlinedChevronLeft)

Full Example

use Filafly\LogoTools\LogoToolsPlugin;
use Filafly\LogoTools\Enums\CollapseButtonStyle;
use Filament\Support\Colors\Color;

->plugin(
    LogoToolsPlugin::make()
        ->iconLogo('img/icon.svg')
        ->darkModeIconLogo('img/icon-dark.svg')
        ->iconLogoHeight('1.25rem')
        ->logoSectionBackground(Color::Blue)
        ->logoSectionBorder('rgb(255 255 255 / 0.1)')
        ->logoSectionPadding('0.5rem')
        ->collapsedLogoSectionWidth('5.5rem')
        ->collapseButtonStyle('rounded')
        ->expandButtonIcon('heroicon-o-arrow-right')
        ->collapseButtonIcon('heroicon-o-arrow-left')
)

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.