PHPackages                             yrizzz/adminkit - 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. [Framework](/categories/framework)
4. /
5. yrizzz/adminkit

ActiveProject[Framework](/categories/framework)

yrizzz/adminkit
===============

Modern, themeable admin panel starter kit built on Laravel 13, Livewire 4, Tailwind CSS v4, and Alpine.js.

v1.2.6(today)924↑2775%4MITBladePHP ^8.3CI failing

Since Jul 27Pushed todayCompare

[ Source](https://github.com/yrizzz/adminkit)[ Packagist](https://packagist.org/packages/yrizzz/adminkit)[ RSS](/packages/yrizzz-adminkit/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (10)Versions (28)Used By (0)

⚡ AdminKit
==========

[](#-adminkit)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ef186280f28834d83f0ca0d75c1304c212c9e23073e510c7cd73306c37f8b40f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7972697a7a7a2f61646d696e6b69742e7376673f7374796c653d666c61742d73717561726526636f6c6f723d344634364535)](https://packagist.org/packages/yrizzz/adminkit)[![Total Downloads](https://camo.githubusercontent.com/779e515e09caf41fe27fb614c34105f39aabcc923f765daed1d2f58885820464/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7972697a7a7a2f61646d696e6b69742e7376673f7374796c653d666c61742d73717561726526636f6c6f723d304541354539)](https://packagist.org/packages/yrizzz/adminkit)[![License](https://camo.githubusercontent.com/864b8a718244edcfc64308d88027eb71699d14f3bf04a4a0059b7ad89df3a67d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f7972697a7a7a2f61646d696e6b69743f7374796c653d666c61742d73717561726526636f6c6f723d313042393831)](LICENSE)[![PHP](https://camo.githubusercontent.com/5d28ba304ae73e6574c8e49e041db70eeb76f70029bbb4a8f9d0004ae204c761/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e332532422d3737374242343f7374796c653d666c61742d737175617265)](https://php.net)[![Laravel](https://camo.githubusercontent.com/5865e511e2257fe8e789c8f9c9decc0716f9e7e7763682a8d9958ea487f56c1f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d31332e782d4646324432303f7374796c653d666c61742d737175617265)](https://laravel.com)[![Livewire](https://camo.githubusercontent.com/47ed8d568f5094ba8fbf1a2bc4119a4b8d8e293f906af01a109d1a1663e2a060/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c697665776972652d342e782d3445354241363f7374796c653d666c61742d737175617265)](https://livewire.laravel.com)[![Buy Me A Coffee](https://camo.githubusercontent.com/38f11db08a2b3b81eeb4567bbab77bfaae2ce385096f5a97deb656fb1913e4c1/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4275792532304d6525323041253230436f666665652d536177657269612d4646444430303f7374796c653d666c61742d737175617265266c6f676f3d6275792d6d652d612d636f66666565266c6f676f436f6c6f723d626c61636b)](https://saweria.co/yrizzz)

**The Lightweight, Themeable Admin Panel Starter Kit for Laravel 13 &amp; Livewire 4.**

AdminKit provides a fast, elegant, and fully themeable admin foundation built natively with **Laravel 13**, **Livewire 4**, **Tailwind CSS v4**, and **Alpine.js**. No React or Vue build step required.

---

🔥 Why AdminKit?
---------------

[](#-why-adminkit)

- ⚡ **Lightweight &amp; Blazing Fast**: Powered natively by Blade, Livewire 4, and Alpine.js. Zero heavy JavaScript framework overhead.
- 🎨 **Modern Design System**: Beautiful, minimal, and accessible UI components right out of the box.
- 🌓 **Instant Theme Engine**: Light, Dark, and System modes with 7 accent color themes and 5 border radius presets — saved in `localStorage` with **zero FOUC** (flash of unstyled content).
- 🔄 **Dual Layout &amp; RTL Native**: Switch between **Vertical Sidebar** and **Horizontal Topbar** layouts with built-in LTR &amp; RTL support.
- ⌨️ **Command Palette (⌘K)**: Built-in keyboard-driven global search palette for quick navigation.
- 🚀 **Zero-Config Setup**: Spin up a full-featured admin dashboard in less than 30 seconds.

---

✨ Features
----------

[](#-features)

- 🔐 **Authentication System**: Pre-wired Login, Register, and Password Reset screens with seeded demo user.
- 🧩 **UI Component Library**: Modular Blade components (`resources/views/components/ui/*`) including Button, Badge, Card, Input, Modal, Alert, Stat Box, Toaster, and Lucide Icons.
- 📊 **Pre-built Dashboards &amp; Charts**: Interactive Chart.js analytics widgets, stat summary cards, and activity feeds.
- 📋 **Data Tables &amp; Forms**: Client-side sorting, searching, selection filters, multi-step form wizard, and custom inputs.
- ⚙️ **Theme Customizer Drawer**: Real-time interactive drawer to preview layout, direction, accent color, and radius adjustments.

---

🚀 Quick Start
-------------

[](#-quick-start)

### Option 1: Create Project via Composer (Recommended)

[](#option-1-create-project-via-composer-recommended)

```
composer create-project yrizzz/adminkit my-app
cd my-app
php artisan serve
```

### Option 2: Clone Repository

[](#option-2-clone-repository)

```
git clone https://github.com/yrizzz/adminkit.git my-app
cd my-app

# Install dependencies
composer install
npm install

# Setup environment & database
cp .env.example .env
php artisan key:generate
php artisan migrate --seed

# Build assets & start server
npm run build
php artisan serve
```

---

🔑 Demo Credentials
------------------

[](#-demo-credentials)

FieldValue**URL**`http://127.0.0.1:8000`**Email**`admin@adminkit.test`**Password**`password`---

☕️ Support &amp; Sponsor
------------------------

[](#️-support--sponsor)

If you find **AdminKit** helpful and want to support its development, you can sponsor via:

- **Saweria**:
- **BNB Chain (BEP-20)**: ```
    0xc708ba9b4764deaaf3b24147ff0c5c8ed7ea4c80

    ```

[ ![Buy Me A Coffee via Saweria](https://camo.githubusercontent.com/82c8dac188cb49c9d47ae8090178e5656f05acfa963350af06d81ff78ad58346/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f537570706f72742532307669612d536177657269612d4646444430303f7374796c653d666f722d7468652d6261646765266c6f676f3d6275792d6d652d612d636f66666565266c6f676f436f6c6f723d626c61636b)](https://saweria.co/yrizzz)Your support is greatly appreciated! ❤️

---

⭐️ Show Your Support
--------------------

[](#️-show-your-support)

If you find **AdminKit** helpful for your projects, please consider giving this repository a **⭐️ Star** on GitHub! It helps the project grow and reach more Laravel developers.

---

📝 License
---------

[](#-license)

AdminKit is open-sourced software licensed under the [MIT license](LICENSE).

###  Health Score

49

—

FairBetter than 94% of packages

Maintenance100

Actively maintained with recent releases

Popularity18

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity58

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 ~0 days

Total

27

Last Release

0d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/30621187?v=4)[Aris Edy Handoko](/maintainers/yrizzz)[@yrizzz](https://github.com/yrizzz)

---

Top Contributors

[![yrizzz](https://avatars.githubusercontent.com/u/30621187?v=4)](https://github.com/yrizzz "yrizzz (58 commits)")

---

Tags

frameworklaravellivewireadmintailwindcssadminpaneladminkit

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/yrizzz-adminkit/health.svg)

```
[![Health](https://phpackages.com/badges/yrizzz-adminkit/health.svg)](https://phpackages.com/packages/yrizzz-adminkit)
```

###  Alternatives

[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)[unopim/unopim

UnoPim Laravel PIM

10.5k2.4k](/packages/unopim-unopim)[ercogx/laravel-filament-starter-kit

This is a Filament v5 Starter Kit for Laravel 13, designed to accelerate the development of Filament-powered applications.

461.8k](/packages/ercogx-laravel-filament-starter-kit)

PHPackages © 2026

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