PHPackages                             cwsps154/frontend-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. cwsps154/frontend-menu

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

cwsps154/frontend-menu
======================

A filament package for creating/updating/ordering frontend page menu's

v1.0.0(1y ago)01MITPHPPHP ^8.2

Since Mar 31Pushed 1y ago1 watchersCompare

[ Source](https://github.com/CWSPS154/frontend-menu)[ Packagist](https://packagist.org/packages/cwsps154/frontend-menu)[ RSS](/packages/cwsps154-frontend-menu/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

Filament Frontend Menu
======================

[](#filament-frontend-menu)

A filament package for updating frontend page menu's

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

[](#installation)

Install Using Composer

```
composer require cwsps154/frontend-menu
```

Run

```
php artisan frontend-menu:install
```

Usage/Examples
--------------

[](#usageexamples)

Add this into your Filament `PannelProvider` class `panel()`

```
use CWSPS154\FrontendMenu\FrontendMenuPlugin;

$panel->plugins([FrontendMenuPlugin::make()]);
```

You can limit the access to the resources

```
use CWSPS154\FrontendMenu\FrontendMenuPlugin;

FrontendMenuPlugin::make()
    ->canViewAny(function () {
        return true;
    })
    ->canCreate(function () {
        return true;
    })
    ->canEdit(function () {
        return true;
    })
    ->canDelete(function () {
        return true;
    })
```

If you are using `cwsps154/users-roles-permissions` plugin you can use like this

```
use CWSPS154\FrontendMenu\Models\Menu;
use CWSPS154\FrontendMenu\FrontendMenuPlugin;
use CWSPS154\UsersRolesPermissions\UsersRolesPermissionsServiceProvider;

FrontendMenuPlugin::make()
    ->canViewAny(UsersRolesPermissionsServiceProvider::HAVE_ACCESS_GATE, Menu::VIEW_MENU)
    ->canCreate(UsersRolesPermissionsServiceProvider::HAVE_ACCESS_GATE, Menu::CREATE_MENU)
    ->canEdit(UsersRolesPermissionsServiceProvider::HAVE_ACCESS_GATE, Menu::EDIT_MENU)
    ->canDelete(UsersRolesPermissionsServiceProvider::HAVE_ACCESS_GATE, Menu::DELETE_MENU),
```

You can publish the config file `frontend-menu.php`, by running this command

```
php artisan vendor:publish --tag=frontend-menu-config
```

which contains these settings

```
return [
    'menu-resource' => CWSPS154\FrontendMenu\Filament\Resources\MenuResource::class,
    'max-depth' => 3,
];
```

For More details about the widget check this package `solution-forest/filament-tree`

Using `get_menus()` you will all the menu's and it's child

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

[](#screenshots)

[![Frontend Menu Screenshot Widget](screenshorts/frontend-menu.png)](screenshorts/frontend-menu.png)

[![Frontend Menu Screenshot Widget](screenshorts/widget.png)](screenshorts/widget.png)

[![Frontend Menu Screenshot Widget](screenshorts/list.png)](screenshorts/list.png)

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance46

Moderate activity, may be stable

Popularity1

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

414d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1404be26270bb4e6e4eb885bb6035a99f1ed0ccc8fdb43be2a969aa7c32117b3?d=identicon)[CWSPS154](/maintainers/CWSPS154)

---

Top Contributors

[![sanoop-ps](https://avatars.githubusercontent.com/u/108001694?v=4)](https://github.com/sanoop-ps "sanoop-ps (5 commits)")

### Embed Badge

![Health badge](/badges/cwsps154-frontend-menu/health.svg)

```
[![Health](https://phpackages.com/badges/cwsps154-frontend-menu/health.svg)](https://phpackages.com/packages/cwsps154-frontend-menu)
```

###  Alternatives

[guava/calendar

Adds support for vkurko/calendar to Filament PHP.

298241.0k3](/packages/guava-calendar)[datlechin/filament-menu-builder

Create and manage menus and menu items

13550.3k2](/packages/datlechin-filament-menu-builder)[marcelweidum/filament-expiration-notice

Customize the livewire expiration notice

9169.0k4](/packages/marcelweidum-filament-expiration-notice)[swisnl/filament-backgrounds

Beautiful backgrounds for Filament auth pages

54149.2k6](/packages/swisnl-filament-backgrounds)[hydrat/filament-table-layout-toggle

Filament plugin adding a toggle button to tables, allowing user to switch between Grid and Table layouts.

6292.3k1](/packages/hydrat-filament-table-layout-toggle)[codewithdennis/filament-lucide-icons

A Filament plugin that integrates Lucide icons, allowing you to use them seamlessly across Filament forms, tables, actions, and more.

4529.4k2](/packages/codewithdennis-filament-lucide-icons)

PHPackages © 2026

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