## Filament Logo
A zero-configuration Filament plugin that displays the panel logo on mobile devices at the top of the panel. Uses Filament render hooks for automatic injection.
### Installation
@verbatim
composer require jeffersongoncalves/filament-logo:^3.0
@endverbatim
### How It Works
No plugin registration needed. The package auto-registers via `LogoServiceProvider` and uses Filament render hooks:
@verbatim
use JeffersonGoncalves\Filament\Logo\LogoServiceProvider;
// Automatically registered via service provider:
// PanelsRenderHook::HEAD_END -> injects CSS styles
// PanelsRenderHook::TOPBAR_BEFORE -> injects logo markup
@endverbatim
### Behavior
- On mobile: logo appears at the top of the panel (before the topbar)
- On desktop (1024px+): logo is hidden via CSS (`display: none`)
- Logo links to `filament()->getHomeUrl()` when available
- Uses the `` component for consistent branding
### Features
- Zero configuration required -- works out of the box after installation
- Responsive display: visible on mobile, hidden on desktop
- Automatic home URL linking via Filament's `getHomeUrl()`
- Uses Filament's built-in `` component
### Best Practices
- Customize the logo by overriding Filament's `` Blade component
- No panel plugin registration is needed -- the service provider handles everything
- The plugin respects Filament's `getHomeUrl()` for logo link destination