- How do I install this Filament topbar plugin in my Laravel project?
- Run `composer require jeffersongoncalves/filament-topbar:^3.0` and the plugin will auto-register with your Filament panel. No manual service provider setup is needed.
- Does this package work with Filament 4.x or older versions?
- No, this package requires **Filament 5.3+** and PHP 8.2+. If you're on Filament 4.x, check for older package versions (e.g., 2.x) or upgrade Filament first.
- Can I customize the topbar’s appearance beyond the default styling?
- Yes, publish the Blade views using `php artisan vendor:publish --tag=filament-topbar-views` and modify the templates. Tailwind/Blade expertise may be needed for complex changes.
- Will this plugin conflict with other Filament plugins that modify the topbar?
- It replaces the default topbar entirely, so conflicts are unlikely. However, test thoroughly if other plugins rely on the original topbar structure or hooks.
- Does the enhanced topbar impact performance in large admin panels?
- The plugin is lightweight and designed for minimal overhead. Benchmark your panel’s load times post-installation if performance is critical, especially on pages with heavy data.
- How do I add custom navigation items or quick actions to the topbar?
- Use the plugin’s built-in methods in your `AdminPanelProvider` (e.g., `TopbarPlugin::make()->addNavigationItem()`). Refer to the [README’s usage section](https://github.com/jeffersongoncalves/filament-topbar) for available options.
- Is this package actively maintained? What’s the roadmap for Filament 6.x?
- The maintainer (@jeffersongoncalves) is active in the Filament ecosystem. Monitor the [GitHub repo](https://github.com/jeffersongoncalves/filament-topbar) for updates; Filament 6.x compatibility will likely be addressed in a major release.
- Does the topbar support accessibility (WCAG) standards out of the box?
- The plugin follows Filament’s responsive design principles, but WCAG compliance isn’t explicitly tested. Review the published Blade views for ARIA attributes or manual testing if accessibility is a priority.
- Can I revert to the default Filament topbar if I don’t like the changes?
- Yes, uninstall the package (`composer remove jeffersongoncalves/filament-topbar`) and clear cached views (`php artisan view:clear`). The original topbar will restore automatically.
- Are there alternatives to this package for customizing Filament’s topbar?
- For deeper customization, consider manually overriding Filament’s `Topbar` component in your project’s resources. However, this requires frontend expertise. Other plugins like `spatie/laravel-filament-admin` may offer broader admin panel tweaks.