PHPackages                             ivanaquino/jet-admin - 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. ivanaquino/jet-admin

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

ivanaquino/jet-admin
====================

Jetstream livewire admin

0.1.4(11mo ago)11161[4 PRs](https://github.com/IvanAquino/jet-admin/pulls)MITBladePHP ^8.1CI passing

Since Mar 10Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/IvanAquino/jet-admin)[ Packagist](https://packagist.org/packages/ivanaquino/jet-admin)[ Docs](https://github.com/ivanaquino/jet-admin)[ GitHub Sponsors]()[ RSS](/packages/ivanaquino-jet-admin/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (14)Versions (10)Used By (0)

JetAdmin
========

[](#jetadmin)

[![Latest Version on Packagist](https://camo.githubusercontent.com/6665866c1143db864a6f43bcc1de8da0fef7a34e193c7932d492825a84049388/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6976616e617175696e6f2f6a65742d61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ivanaquino/jet-admin)[![GitHub Tests Action Status](https://camo.githubusercontent.com/a62eb0a7be79cf202ac3a3867b788bc3e72285d91371d4bd71f84dc8a423b16e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6976616e617175696e6f2f6a65742d61646d696e2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/ivanaquino/jet-admin/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/36d11354db3a996576ab26c304c701e7b03205ca6edb1f6fbe4a2eb6b17de5d2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f6976616e617175696e6f2f6a65742d61646d696e2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/ivanaquino/jet-admin/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/9f4efce999e6cdf1a692c2dfd43c0cc7072daa14d92b7bc07ca714a5f74daf39/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6976616e617175696e6f2f6a65742d61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ivanaquino/jet-admin)

This package provides an elegant and responsive admin panel and landing page layout for applications using Laravel Jetstream with Livewire. It offers a quick and easy way to scaffold your application's administrative interface and landing page, saving you time and effort in the early stages of development.

 [![](docs/dashboard_dark.jpg)](docs/dashboard_dark.jpg) [![](docs/dashboard_light.jpg)](docs/dashboard_light.jpg)

Libraries
---------

[](#libraries)

- [Blade Icons](https://github.com/blade-ui-kit/blade-icons)
- [Blade Hero icons](https://github.com/blade-ui-kit/blade-heroicons)

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

[](#installation)

*Note: Flowbite package is not required anymore.*

Are you a visual learner?, check our youtube video

You can install the package via composer:

```
composer require ivanaquino/jet-admin
```

Add dark model to your tailwind config file `tailwind.config.js`.

```
{
    darkMode: 'class',
    ...
}
```

It's simple to change main color, you just have to modify the tailwind config file `tailwind.config.js`.

```
{
    theme: {
        extend: {
            // ...
            colors: {
                'primary': {
                    '50': '#eaf5ff',
                    '100': '#d9ecff',
                    '200': '#badbff',
                    '300': '#91c1ff',
                    '400': '#659bff',
                    '500': '#4273ff',
                    '600': '#2149ff',
                    '700': '#183bec',
                    '800': '#1533be',
                    '900': '#1b3494',
                    '950': '#101d56',
                },
            },
        },
    },
}
```

Publish jet-admin javascript

```
php artisan vendor:publish --tag="jet-admin-js"
```

Now add jet-admin js to `./resources/js/app.js`

```
import './vendor/jet_admin';
```

To change navigation items you have to publish config file:

```
php artisan vendor:publish --tag="jet-admin-config"
```

This is the contents of the published config file:

```
return [
    /*
     |--------------------------------------------------------------------------
     | Landing Navigation
     |--------------------------------------------------------------------------
     |
     | name: Could be a string or a translation key this will be passed through the __() function
     | route: Could be a url or a route name
     |
     |*/
    'landing_navigation' => [
        [
            'name' => 'Home',
            'route' => '/',
        ],
    ],

    /*
     |--------------------------------------------------------------------------
     | Dashboard Navigation
     |--------------------------------------------------------------------------
     |
     | Items in this array will be used to generate the dashboard sidebar
     | - name: The label that will be displayed in the sidebar
     | - route: Could be a route name or a URL
     | - active_route: The route name or URL that will be used to determine if the item is active
     | - icon: The icon that will be displayed in the sidebar, Heroicons' name.
     |
     |*/
    'dashboard_navigation' => [
        [
            'name' => 'Dashboard',
            'route' => 'dashboard',
            'active_route' => 'dashboard*',
            'icon' => 'home',
        ],
        [
            'name' => 'Profile',
            'route' => 'profile.show',
            'active_route' => 'profile.show',
            'icon' => 'user',
        ],
        // [
        //     'name' => 'Url example',
        //     'route' => 'my-url',
        //     'active_route' => 'my-url',
        //     'icon' => 'shield-exclamation',
        // ],
    ],
];
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="jet-admin-views"
```

Usage
-----

[](#usage)

Landing layout

```

    Your own content goes here...

```

Dashboard layouts

```

    Your dashboard content goes here...

{{-- OR --}}

    Your dashboard content goes here...

```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Ivan Aquino](https://github.com/IvanAquino)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance73

Regular maintenance activity

Popularity13

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 67.4% 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 ~110 days

Total

5

Last Release

358d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1573ddc6b281047d25b133aa853da5b355b0f385acb88ec767de94f6ba7d46a5?d=identicon)[IvanAquino](/maintainers/IvanAquino)

---

Top Contributors

[![IvanAquino](https://avatars.githubusercontent.com/u/29342852?v=4)](https://github.com/IvanAquino "IvanAquino (29 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (7 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (6 commits)")[![yuloma](https://avatars.githubusercontent.com/u/110968332?v=4)](https://github.com/yuloma "yuloma (1 commits)")

---

Tags

adminbladedashboarddashboard-templatesjetstreamjetstream-laravellanding-templatelaravellaravel-frameworklaravel-jetstreamlaravel-packagestarterstarter-templatetailwindcsslaravelIvan Aquinojet-admin

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/ivanaquino-jet-admin/health.svg)

```
[![Health](https://phpackages.com/badges/ivanaquino-jet-admin/health.svg)](https://phpackages.com/packages/ivanaquino-jet-admin)
```

###  Alternatives

[ryangjchandler/blade-capture-directive

Create inline partials in your Blade templates with ease.

8222.2M12](/packages/ryangjchandler-blade-capture-directive)[spatie/laravel-blade-comments

Add debug comments to your rendered output

177325.5k](/packages/spatie-laravel-blade-comments)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[daikazu/laravel-glider

Start using Glide on-the-fly instantly in your Laravel blade templates.

882.3k](/packages/daikazu-laravel-glider)[combindma/dash-ui

A streamlined and stylish UI component library for Laravel Blade, crafted with TailwindCSS and AlpineJs for simplicity and elegance.

631.4k](/packages/combindma-dash-ui)[a2insights/filament-saas

Filament Saas for A2Insights

161.1k](/packages/a2insights-filament-saas)

PHPackages © 2026

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