PHPackages                             tomatophp/filament-menus - 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. [Templating &amp; Views](/categories/templating)
4. /
5. tomatophp/filament-menus

ActiveLibrary[Templating &amp; Views](/categories/templating)

tomatophp/filament-menus
========================

Menu Database builder to use it as a navigation on Filament Panel or as a Livewire Component

2.0.0(1y ago)306.3k↑25%8[4 PRs](https://github.com/tomatophp/filament-menus/pulls)3MITPHPPHP ^8.2|^8.3|^8.4CI passing

Since Dec 20Pushed 4mo ago2 watchersCompare

[ Source](https://github.com/tomatophp/filament-menus)[ Packagist](https://packagist.org/packages/tomatophp/filament-menus)[ GitHub Sponsors](https://github.com/3x1io)[ RSS](/packages/tomatophp-filament-menus/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (15)Versions (14)Used By (3)

[![Screenshot](https://raw.githubusercontent.com/tomatophp/filament-menus/master/arts/3x1io-tomato-menus.jpg)](https://raw.githubusercontent.com/tomatophp/filament-menus/master/arts/3x1io-tomato-menus.jpg)

Filament Menus
==============

[](#filament-menus)

[![Dependabot Updates](https://github.com/tomatophp/filament-menus/actions/workflows/dependabot/dependabot-updates/badge.svg)](https://github.com/tomatophp/filament-menus/actions/workflows/dependabot/dependabot-updates)[![PHP Code Styling](https://github.com/tomatophp/filament-menus/actions/workflows/fix-php-code-styling.yml/badge.svg)](https://github.com/tomatophp/filament-menus/actions/workflows/fix-php-code-styling.yml)[![Tests](https://github.com/tomatophp/filament-menus/actions/workflows/tests.yml/badge.svg)](https://github.com/tomatophp/filament-menus/actions/workflows/tests.yml)[![Latest Stable Version](https://camo.githubusercontent.com/bf4545748a80b96085d2a25fb4762c49796435f633acecc0a6a69991501dbd45/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6d656e75732f76657273696f6e2e737667)](https://packagist.org/packages/tomatophp/filament-menus)[![License](https://camo.githubusercontent.com/12a89ef87bb9f76d287362b434fffcdb5faf3eab47d9da9cc058d1b3c93ba44e/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6d656e75732f6c6963656e73652e737667)](https://packagist.org/packages/tomatophp/filament-menus)[![Downloads](https://camo.githubusercontent.com/96b96011c23462925bf1b41246c6731cae00d3c14dbb6a54b062756a0fc7b607/68747470733a2f2f706f7365722e707567782e6f72672f746f6d61746f7068702f66696c616d656e742d6d656e75732f642f746f74616c2e737667)](https://packagist.org/packages/tomatophp/filament-menus)

Menu Database builder to use it as a navigation on Filament Panel or as a Livewire Component

Screenshots
-----------

[](#screenshots)

[![Menus List](https://raw.githubusercontent.com/tomatophp/filament-menus/master/arts/resource.png)](https://raw.githubusercontent.com/tomatophp/filament-menus/master/arts/resource.png)[![Edit Menu](https://raw.githubusercontent.com/tomatophp/filament-menus/master/arts/edit.png)](https://raw.githubusercontent.com/tomatophp/filament-menus/master/arts/edit.png)[![Menu Items](https://raw.githubusercontent.com/tomatophp/filament-menus/master/arts/create-item.png)](https://raw.githubusercontent.com/tomatophp/filament-menus/master/arts/create-item.png)

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

[](#installation)

```
composer require tomatophp/filament-menus
```

after install your package please run this command

```
php artisan filament-menus:install
```

finally register the plugin on `/app/Providers/Filament/AdminPanelProvider.php`

```
->plugins(
    \Filament\SpatieLaravelTranslatablePlugin::make()->defaultLocales(['en', 'ar'])
    \TomatoPHP\FilamentMenus\FilamentMenusPlugin::make()
)
```

Use as Filament Navigation
--------------------------

[](#use-as-filament-navigation)

you can use this package as a navigation on Filament Admin Panel

```
use Filament\Navigation\NavigationBuilder;
use Filament\Navigation\NavigationGroup;
use TomatoPHP\FilamentMenus\FilamentMenuLoader;

$panel->navigation(function (NavigationBuilder $builder){
    return $builder
        // Use Inside Group
        ->groups([
            NavigationGroup::make()
                ->label('Dashboard')
                ->items(FilamentMenuLoader::make('dashboard')),
        ])
        // Use Directly
        ->items(FilamentMenuLoader::make('dashboard'));
})
```

where `dashboard` is a key of menu.

Use as a Livewire Component
---------------------------

[](#use-as-a-livewire-component)

go to route `admin/menus` and create a new menu and you will get the code of livewire component

you can build a menu just by using this command as a livewire component

```

```

where `header` is a key of menu and you will get the code ready on the Table list of menus

you can use custom view ex:

```

```

by default we use Tailwind as a main view with this code

```
@foreach ($menuItems as $item)

        @if(isset($item['icon']) && !empty($item['icon']))

        @endif
        {{ $item['title'] }}

@endforeach
```

or you can use direct helper `menu($key)` to get the menu items

```
@foreach (menu('header') as $item)

        @if(isset($item['icon']) && !empty($item['icon']))

        @endif
        {{ $item['title'] }}

@endforeach
```

Publish Assets
--------------

[](#publish-assets)

you can publish config file by use this command

```
php artisan vendor:publish --tag="filament-menus-config"
```

you can publish views file by use this command

```
php artisan vendor:publish --tag="filament-menus-views"
```

you can publish languages file by use this command

```
php artisan vendor:publish --tag="filament-menus-lang"
```

you can publish migrations file by use this command

```
php artisan vendor:publish --tag="filament-menus-migrations"
```

Other Filament Packages
-----------------------

[](#other-filament-packages)

Checkout our [Awesome TomatoPHP](https://github.com/tomatophp/awesome)

###  Health Score

49

—

FairBetter than 95% of packages

Maintenance63

Regular maintenance activity

Popularity35

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 84.8% 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 ~51 days

Recently: every ~62 days

Total

10

Last Release

421d ago

Major Versions

v1.0.8 → 2.0.02025-03-24

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

v1.0.1PHP ^8.1|^8.2

2.0.0PHP ^8.2|^8.3|^8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/2147eb2fca7ab5f0124d0fafd88ba2d2a5dfa3a0036fb8872d1084b7cba29366?d=identicon)[fadymondy](/maintainers/fadymondy)

---

Top Contributors

[![fadymondy](https://avatars.githubusercontent.com/u/11937812?v=4)](https://github.com/fadymondy "fadymondy (28 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (2 commits)")[![megoxv](https://avatars.githubusercontent.com/u/87904671?v=4)](https://github.com/megoxv "megoxv (1 commits)")

---

Tags

bladecomponentdatabase-menusfilamentphpfilamentphp-pluginmenu-managermenusurlpluginlaravelroutesgeneratorviewsfilamentphpmenus

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/tomatophp-filament-menus/health.svg)

```
[![Health](https://phpackages.com/badges/tomatophp-filament-menus/health.svg)](https://phpackages.com/packages/tomatophp-filament-menus)
```

###  Alternatives

[3x1io/filament-menus

Menu View Generator Using Livewire

122.8k](/packages/3x1io-filament-menus)[tomatophp/tomato-admin

Tomato Admin Dashboard Build With FilamentPHP Theme for Laravel Splade

578.6k60](/packages/tomatophp-tomato-admin)[tomatophp/filament-plugins

Manage your modules as a plugin system with plugin generator

644.7k2](/packages/tomatophp-filament-plugins)[andreia/filament-nord-theme

A minimalist Arctic Nord theme for FilamentPHP

13334.7k2](/packages/andreia-filament-nord-theme)[lara-zeus/qr

Zeus Qr Code Input to generate Qr Code with designing options for filamentPHP

5553.2k](/packages/lara-zeus-qr)[tomatophp/filament-cms

Full CMS System with support of importing integrations and multi meta functions

11410.4k4](/packages/tomatophp-filament-cms)

PHPackages © 2026

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