PHPackages                             skylence/filament-mega-menu - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. skylence/filament-mega-menu

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

skylence/filament-mega-menu
===========================

A mega menu sidebar plugin for Filament 5

v1.2.0(2mo ago)03.9k↓50%MITPHPPHP ^8.3

Since Jan 14Pushed 2mo agoCompare

[ Source](https://github.com/skylence-be/filament-mega-menu)[ Packagist](https://packagist.org/packages/skylence/filament-mega-menu)[ RSS](/packages/skylence-filament-mega-menu/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (10)Versions (5)Used By (0)

Filament Mega Menu
==================

[](#filament-mega-menu)

A mega menu sidebar plugin for Filament 4.

Installation
------------

[](#installation)

```
composer require skylence/filament-mega-menu
```

Usage
-----

[](#usage)

Add the plugin to your Filament panel provider:

```
use Skylence\FilamentMegaMenu\MegaMenuPlugin;
use Skylence\FilamentMegaMenu\MegaMenuItem;
use Skylence\FilamentMegaMenu\MegaMenuColumn;
use Skylence\FilamentMegaMenu\MegaMenuLink;

public function panel(Panel $panel): Panel
{
    return $panel
        ->plugins([
            MegaMenuPlugin::make()
                ->logoIcon('heroicon-o-cube')
                ->logoUrl('/')
                ->panelWidth(900)
                ->menuItems([
                    MegaMenuItem::make('dashboard')
                        ->label('Dashboard')
                        ->icon('heroicon-o-home')
                        ->url('/dashboard'),

                    MegaMenuItem::make('sales')
                        ->label('Sales')
                        ->icon('heroicon-o-shopping-cart')
                        ->columns([
                            MegaMenuColumn::make('Orders')
                                ->links([
                                    MegaMenuLink::make('All Orders')
                                        ->url('/orders')
                                        ->icon('heroicon-o-document-text'),
                                    MegaMenuLink::make('Create Order')
                                        ->url('/orders/create'),
                                ]),
                            MegaMenuColumn::make('Invoices')
                                ->links([
                                    MegaMenuLink::make('All Invoices')
                                        ->url('/invoices'),
                                ]),
                        ]),
                ]),
        ]);
}
```

Configuration
-------------

[](#configuration)

### Menu Items

[](#menu-items)

Menu items can be direct links or expandable panels with columns:

```
// Direct link
MegaMenuItem::make('dashboard')
    ->label('Dashboard')
    ->icon('heroicon-o-home')
    ->url('/dashboard')

// Resource link
MegaMenuItem::make('users')
    ->label('Users')
    ->icon('heroicon-o-users')
    ->resource(UserResource::class)

// Panel with columns
MegaMenuItem::make('sales')
    ->label('Sales')
    ->icon('heroicon-o-shopping-cart')
    ->columns([...])
    ->sort(10)
    ->visible(fn () => auth()->user()->can('view_sales'))
```

### Columns

[](#columns)

Columns group related links within a menu panel:

```
MegaMenuColumn::make('Orders')
    ->links([...])
    ->visible(fn () => auth()->user()->can('view_orders'))
```

### Links

[](#links)

Links are the individual navigation items:

```
MegaMenuLink::make('All Orders')
    ->url('/orders')
    ->icon('heroicon-o-document-text')
    ->badge('5', 'bg-red-100 text-red-800')
    ->visible(fn () => auth()->user()->can('view_orders'))
    ->disabled(fn () => ! Feature::active('orders'))
    ->isActiveWhen(fn () => request()->routeIs('orders.*'))
```

Styling
-------

[](#styling)

The sidebar uses Tailwind CSS classes. To customize the appearance, you can publish the views:

```
php artisan vendor:publish --tag=filament-mega-menu-views
```

Requirements
------------

[](#requirements)

- PHP 8.2+
- Laravel 11+
- Filament 4.0+

License
-------

[](#license)

MIT

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance88

Actively maintained with recent releases

Popularity24

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~21 days

Total

4

Last Release

60d ago

PHP version history (3 changes)v1.0.0PHP ^8.2

v1.1.0PHP ^8.4

v1.1.1PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/8ad0eeb3e0f0183e243d7edf649313243750f8048918eb00c9c041c5dc379149?d=identicon)[skylence](/maintainers/skylence)

---

Top Contributors

[![jonasvanderhaegen-xve](https://avatars.githubusercontent.com/u/216873699?v=4)](https://github.com/jonasvanderhaegen-xve "jonasvanderhaegen-xve (2 commits)")[![jonasvanderhaegen](https://avatars.githubusercontent.com/u/7755555?v=4)](https://github.com/jonasvanderhaegen "jonasvanderhaegen (1 commits)")

---

Tags

laravelnavigationfilamentsidebarmega-menu

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/skylence-filament-mega-menu/health.svg)

```
[![Health](https://phpackages.com/badges/skylence-filament-mega-menu/health.svg)](https://phpackages.com/packages/skylence-filament-mega-menu)
```

###  Alternatives

[pboivin/filament-peek

Full-screen page preview modal for Filament

253319.6k12](/packages/pboivin-filament-peek)[dotswan/filament-map-picker

Easily pick and retrieve geo-coordinates using a map-based interface in your Filament applications.

124139.3k2](/packages/dotswan-filament-map-picker)[creagia/filament-code-field

A Filamentphp input field to edit or view code data.

58289.3k3](/packages/creagia-filament-code-field)[jibaymcs/filament-tour

Bring the power of DriverJs to your Filament panels and start a tour !

12247.8k](/packages/jibaymcs-filament-tour)[aymanalhattami/filament-context-menu

context menu (right click menu) for filament

9838.0k](/packages/aymanalhattami-filament-context-menu)[tapp/filament-google-autocomplete-field

Filament plugin that provides a Google Autocomplete field

3098.1k](/packages/tapp-filament-google-autocomplete-field)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
