PHPackages                             alp-develop/laravel-livewire-panel - 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. [Admin Panels](/categories/admin)
4. /
5. alp-develop/laravel-livewire-panel

ActiveLibrary[Admin Panels](/categories/admin)

alp-develop/laravel-livewire-panel
==================================

Admin panel framework for Laravel and Livewire. Modular architecture with widgets, plugins, search, notifications, gate authorization, dark mode, i18n and multi-theme support (Bootstrap 4, Bootstrap 5, Tailwind CSS). Compatible with Laravel 10-13, Livewire 3-4, PHP 8.1-8.5.

v1.0.5(1mo ago)136MITPHPPHP ^8.1CI passing

Since Apr 11Pushed 1mo agoCompare

[ Source](https://github.com/alp-develop/laravel-livewire-panel)[ Packagist](https://packagist.org/packages/alp-develop/laravel-livewire-panel)[ RSS](/packages/alp-develop-laravel-livewire-panel/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (6)Dependencies (12)Versions (7)Used By (0)

Laravel Livewire Panel
======================

[](#laravel-livewire-panel)

 [![Stable](https://camo.githubusercontent.com/3ff14d94874bc93d2ef20a389452972b3786f4e8b45a3873c6d781f94049ec66/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616c702d646576656c6f702f6c61726176656c2d6c697665776972652d70616e656c2e7376673f7374796c653d666c61742d737175617265266c6162656c3d737461626c65)](https://packagist.org/packages/alp-develop/laravel-livewire-panel) [![Tests](https://camo.githubusercontent.com/3361efe289d538a80650fb43ef0f254bac2128a15f3dd16f7860a2d4f987e293/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f616c702d646576656c6f702f6c61726176652d6c697665776972652d70616e656c2f74657374732e796d6c3f6272616e63683d6d61696e267374796c653d666c61742d737175617265266c6162656c3d7465737473)](https://github.com/alp-develop/laravel-livewire-panel/actions/workflows/tests.yml) [![License](https://camo.githubusercontent.com/a1b3535935ae56936b2dda7dfad608d8eafec207689d5afd7d69dc001efa892f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f616c702d646576656c6f702f6c61726176656c2d6c697665776972652d70616e656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/alp-develop/laravel-livewire-panel)

A complete admin panel framework for Laravel. Supports Bootstrap 4, Bootstrap 5, and Tailwind CSS. Compatible with Livewire 3 and Livewire 4.

---

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

[](#requirements)

RequirementVersionPHP8.1 / 8.2 / 8.3 / 8.4 / 8.5Laravel10 / 11 / 12 / 13Livewire3.x / 4.x---

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

[](#installation)

```
composer require alp-develop/laravel-livewire-panel
php artisan panel:install
```

The installer runs an interactive menu:

1. **URL prefix** (default: `admin`)
2. **Navigation mode** — `config` or `modules`
3. **CSS Theme** — Bootstrap 5, Bootstrap 4, or Tailwind CSS
4. **Gate driver** — None, Spatie, or Laravel Gate
5. **Registration** — enable/disable
6. **CDN libraries** — Chart.js, SweetAlert2, Select2, Flatpickr
7. **Publish views** — optional

Use `--defaults` to skip prompts.

---

Quick Start
-----------

[](#quick-start)

### Create your first page

[](#create-your-first-page)

In config mode, create a Livewire component with the panel layout and register the route manually:

```
namespace App\Livewire;

use Livewire\Attributes\Layout;
use Livewire\Component;

#[Layout('panel::layouts.app')]
class Dashboard extends Component
{
    public function render()
    {
        return view('livewire.dashboard');
    }
}
```

Register the route in `routes/web.php` with `PanelAuthMiddleware`. The `prefix` must match the panel prefix and the `name` must follow the pattern `panel.{panelId}.`:

```
use App\Livewire\Dashboard;
use AlpDevelop\LivewirePanel\Http\Middleware\PanelAuthMiddleware;

Route::middleware(['web', PanelAuthMiddleware::class])
    ->prefix('prefix')
    ->name('panel.admin.')
    ->group(function () {
        Route::get('/', Dashboard::class)->name('home');
    });
```

Visit `http://yourapp.test/prefix/login` — after login you land on `/prefix` where your page renders inside the panel layout.

The `prefix` determines the base URL of the panel. For example, `'prefix' => 'admin'` means all panel routes live under `/admin/*`. After login, the user is redirected to `/{prefix}`. Route names must follow `panel.{panelId}.{name}` so the sidebar can resolve them.

See [Installation](docs/installation.md) for the full interactive menu, modules mode, and all options.

---

Documentation
-------------

[](#documentation)

GuideDescription[Installation](docs/installation.md)Interactive installer, navigation modes, getting started[Commands](docs/commands.md)All `panel:*` artisan commands[Configuration](docs/configuration.md)Panels, guards, modes, CDN, multi-panel, helpers[Components](docs/components.md)Login, register, sidebar, navbar per panel[Navigation](docs/navigation.md)Config mode, modules mode, groups, permissions, user menu[Modules](docs/modules.md)Dashboard, Users, Auth + custom modules[Widgets](docs/widgets.md)StatsCard, Chart, RecentTable + custom widgets[Themes](docs/themes.md)Bootstrap 4/5, Tailwind + custom themes[Customization](docs/customization.md)CSS variables, sidebar, navbar, dark mode, layout[Icons](docs/icons.md)Heroicons + custom icon libraries[Localization](docs/localization.md)Language selector, translations, i18n[Plugins](docs/plugins.md)Cross-panel extensions with navigation and widgets[Notifications](docs/notifications.md)Navbar bell icon, badge, polling, notification providers[Events](docs/events.md)Audit events for login, registration, CRUD, access control[Security](docs/security.md)Rate limiting, CSS sanitization, gate drivers, recommendations[API Reference](docs/api-reference.md)Interfaces, classes, registries, events---

Features
--------

[](#features)

- **Multi-panel** -- Multiple independent panels in a single app with separate config, theme, guard and navigation per panel.
- **3 CSS themes** -- Bootstrap 4, Bootstrap 5 and Tailwind CSS with full CSS variable theming (`--panel-*`).
- **Sidebar state management** -- Configurable initial state (expanded/collapsed), persistent or session-only state via `localStorage`, collapsible toggle control, and icons-only mode when collapsed. Zero-flash persistence across SPA navigations via `livewire:navigating` `onSwap`.
- **Dark mode** -- Toggle in navbar with `localStorage` persistence. Optional toggle on auth pages via `dark_mode_show_on_auth`.
- **Localization** -- Built-in translations for 10 languages (en, es, fr, pt, zh, hi, ar, bn, ru, ja). Language selector in navbar and auth pages. Sidebar labels support translation keys automatically. See [Localization](docs/localization.md).
- **Module system** -- Built-in Dashboard, Users and Auth modules. Create custom modules with `panel:make-module`.
- **Widget system** -- StatsCard, Chart and RecentTable widgets. Create custom widgets with `panel:make-widget`.
- **Plugin system** -- Cross-panel extensions with lifecycle hooks, navigation and widgets.
- **Search** -- Global search (`Ctrl+K`) with pluggable providers and permission filtering.
- **Notifications** -- Polling notification system with count badge and provider interface. See [Notifications](docs/notifications.md).
- **Gate authorization** -- PanelGate with Spatie, Laravel Gate or custom drivers.
- **Password reset** -- Full forgot-password -&gt; email -&gt; reset-password flow out of the box. Customizable notification class and email template via `panel:make-component forgot-password-notification`.
- **Audit events** -- 8 event classes for login, logout, registration, CRUD operations and access denial. See [Events](docs/events.md).
- **Security hardening** -- Rate limiting on login (5/60s), CSS injection prevention, SQL wildcard sanitization, `#[Locked]` on Livewire properties, locale whitelist in `LocaleController`. See [Security](docs/security.md).
- **Performance** -- ETag + HTTP 304 on asset serving, memoization in `PanelGate`/`PanelRenderer`/`CdnPluginResolver`, O(1) route lookups via `buildRouteMap()`, identical query caching in `PanelSearch`, Octane-safe `scoped()` bindings.
- **Extensibility** -- `CdnManagerInterface`, `ThemeInterface`, `ModuleInterface`, `WidgetInterface`, `NotificationProviderInterface`, `SearchProviderInterface` — all injectable and replaceable via the container.
- **SPA performance** -- CDN and theme scripts use `data-navigate-once` (load once, stay in memory). Configurable favicon. Page transitions trigger after Livewire hydration.
- **Reusable components** -- ``, ``, ``, ``, ``, ``, ``.

Testing
-------

[](#testing)

```
./vendor/bin/pest
```

---

License
-------

[](#license)

MIT

###  Health Score

42

—

FairBetter than 88% of packages

Maintenance93

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity47

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

Every ~4 days

Total

6

Last Release

36d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/264593454?v=4)[alp-develop](/maintainers/alp-develop)[@alp-develop](https://github.com/alp-develop)

---

Top Contributors

[![alp-develop](https://avatars.githubusercontent.com/u/264593454?v=4)](https://github.com/alp-develop "alp-develop (25 commits)")

---

Tags

laravellivewiretailwindbootstrapdashboardadminpanel

###  Code Quality

TestsPest

Static AnalysisPHPStan, Rector

### Embed Badge

![Health badge](/badges/alp-develop-laravel-livewire-panel/health.svg)

```
[![Health](https://phpackages.com/badges/alp-develop-laravel-livewire-panel/health.svg)](https://phpackages.com/packages/alp-develop-laravel-livewire-panel)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3325.1M337](/packages/psalm-plugin-laravel)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k14.1M120](/packages/laravel-pulse)[larastan/larastan

Larastan - Discover bugs in your code without running it. A phpstan/phpstan extension for Laravel

6.4k51.0M7.4k](/packages/larastan-larastan)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9732.3M121](/packages/roots-acorn)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

76318.2M110](/packages/laravel-mcp)[api-platform/laravel

API Platform support for Laravel

59156.3k10](/packages/api-platform-laravel)

PHPackages © 2026

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