PHPackages                             osaris-uk/navigation - 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. osaris-uk/navigation

ActiveLibrary

osaris-uk/navigation
====================

Dynamic navigation package for Laravel

1.4(2y ago)0711PHPPHP ^7.0|^8.0

Since Dec 29Pushed 2y agoCompare

[ Source](https://github.com/osaris-uk/navigation)[ Packagist](https://packagist.org/packages/osaris-uk/navigation)[ RSS](/packages/osaris-uk-navigation/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (9)DependenciesVersions (10)Used By (1)

Osaris UK - Navigation
======================

[](#osaris-uk---navigation)

Usage
-----

[](#usage)

After running the migrations you will need to publish the config file with:

```
php artisan vendor:publish --provider="OsarisUk\Navigation\NavigationServiceProvider" --tag="config"
```

Config
------

[](#config)

In the config you can define how many navigations you would like to set up and which views you would like them to be available to. You can also have multiple navigations available on the same view. The key is the view you would like the navigation to be avaliable to and the value is used to group the navigations:

```
    'navigations' => [
        '_layouts.partials.navigation' => 'main',
        'admin._layouts.partials.navigation' => [
            'admin',
            'admin_shortcuts'
        ],
    ],
```

Blade Implementation
--------------------

[](#blade-implementation)

Here is a simple example of a blade implementation:

```
    @foreach($navItems as $navItem)
    	@continue($navItem->realm !== 'admin')

        @if (count($navItem['children']))

                {{ $navItem->title }}

                        @foreach($navItem['children'] as $child)

                                {{ $child->title }}

                        @endforeach

        @else

                {{ $navItem->title }}

        @endif
    @endforeach
```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity71

Established project with proven stability

 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

Every ~219 days

Recently: every ~435 days

Total

9

Last Release

938d ago

PHP version history (3 changes)v1.0PHP ^7.1.3

1.3.1PHP ^7.0.0

1.4PHP ^7.0|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/c655f8ff1687b3f3a9156d917431f14c05dbc187e19e11201348c894afb35045?d=identicon)[osaris-uk](/maintainers/osaris-uk)

---

Top Contributors

[![john-dent](https://avatars.githubusercontent.com/u/24832003?v=4)](https://github.com/john-dent "john-dent (12 commits)")

### Embed Badge

![Health badge](/badges/osaris-uk-navigation/health.svg)

```
[![Health](https://phpackages.com/badges/osaris-uk-navigation/health.svg)](https://phpackages.com/packages/osaris-uk-navigation)
```

PHPackages © 2026

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