PHPackages                             ndeblauw/blue-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. ndeblauw/blue-admin

ActiveLibrary

ndeblauw/blue-admin
===================

Admin panel (TALL stack ready)

v1.0.0(1y ago)01.5k—0%[2 issues](https://github.com/ndeblauw/blue-admin/issues)GPL-2.0-or-laterBladePHP ^7.4|^8.1CI failing

Since Feb 14Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/ndeblauw/blue-admin)[ Packagist](https://packagist.org/packages/ndeblauw/blue-admin)[ Docs](https://github.com/ndeblauw/blue-admin)[ RSS](/packages/ndeblauw-blue-admin/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (6)Versions (6)Used By (0)

blue-admin, a custom admin backend
==================================

[](#blue-admin-a-custom-admin-backend)

[![Latest Version on Packagist](https://camo.githubusercontent.com/757283fba9b2be66f2e716a890c54dcceb4da583bfee64bf7c5d9b2d62c67ea7/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e6465626c6175772f626c75652d61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ndeblauw/blue-admin)[![Total Downloads](https://camo.githubusercontent.com/51cb4efeeea3d6ff26a2bffea603854b7b0bf538109b6252c9e1b625d3e90046/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e6465626c6175772f626c75652d61646d696e2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/ndeblauw/blue-admin)[![GitHub Actions](https://github.com/ndeblauw/blue-admin/actions/workflows/main.yml/badge.svg)](https://github.com/ndeblauw/blue-admin/actions/workflows/main.yml/badge.svg)

Documentation will follow once the pacakge becomes stable...

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

[](#installation)

You can install the package via composer:

```
composer require ndeblauw/blue-admin
```

Or manually add the following line to composer.json for the legacy version:

```
  "ndeblauw/blue-admin": "^1.0",

```

or for the newest version

```
  "ndeblauw/blue-admin": "9999999-dev",

```

Installation in local development
---------------------------------

[](#installation-in-local-development)

Add to your composer.json

```
"repositories": {
    "blueadmin": {
        "type": "path",
        "url": "D:/HERD/blue-admin", // or whatever directory you use
        "options": {
            "symlink": true
        }
    }
},
"require": {
   ...
   "ndeblauw/blue-admin": "@dev",
   ...
}

```

Usage
-----

[](#usage)

When using vite, don't forget to add to `tailwind.config.js`the following line

```
export default {
    content: [
        // Existing paths
        './vendor/ndeblauw/blue-admin/resources/**/*.blade.php', //
