PHPackages                             xtheme/artisan-ui - 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. [CLI &amp; Console](/categories/cli)
4. /
5. xtheme/artisan-ui

ActiveLibrary[CLI &amp; Console](/categories/cli)

xtheme/artisan-ui
=================

Run your artisan commands by pressing buttons.

1.0.3(3mo ago)0568↑12.5%MITBladePHP ^8.2CI passing

Since Apr 20Pushed 3mo agoCompare

[ Source](https://github.com/xtheme/artisan-ui)[ Packagist](https://packagist.org/packages/xtheme/artisan-ui)[ Docs](https://github.com/xtheme/artisan-ui)[ GitHub Sponsors](https://github.com/sponsors/xtheme)[ RSS](/packages/xtheme-artisan-ui/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependencies (5)Versions (7)Used By (0)

🧰 Artisan UI
============

[](#-artisan-ui)

[![Latest Version on Packagist](https://camo.githubusercontent.com/2819f493401082edbea94ca2f8834c3daca74c618b6c9835bdf309655fe96474/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f787468656d652f6172746973616e2d75692e737667)](https://packagist.org/packages/xtheme/artisan-ui)[![GitHub Tests Action Status](https://camo.githubusercontent.com/c94db74a2734c7923d5ca6dbc6060703fbfba044a816759fd93dccc98c68c7c1/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f787468656d652f6172746973616e2d75692f54657374733f6c6162656c3d7465737473)](https://github.com/xtheme/artisan-ui/actions?query=workflow%3ATests+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/3bff75b11a748f49595b13dc54de942d9b251ff554f7b10c47d85a479b2c067d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f787468656d652f6172746973616e2d75692e737667)](https://packagist.org/packages/xtheme/artisan-ui)

[![artisan-ui](https://raw.githubusercontent.com/xtheme/artisan-ui/main/art/home.png)](https://raw.githubusercontent.com/xtheme/artisan-ui/main/art/home.png)

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

[](#installation)

```
composer require xtheme/artisan-ui
php artisan artisan-ui:install
```

Usage
-----

[](#usage)

Just go to `/artisan` and enjoy! 🌺

[![artisan-ui-detail](https://raw.githubusercontent.com/xtheme/artisan-ui/main/art/detail.png)](https://raw.githubusercontent.com/xtheme/artisan-ui/main/art/detail.png)

Configure access
----------------

[](#configure-access)

By default, Artisan UI is only available on local environments. You can provide your own custom authorization logic by providing a callback to the `ArtisanUI::auth` method. As usual, you may add this logic to any of your service providers.

The following example allows any user on local environments but only admin users on other environments.

```
use Xtheme\ArtisanUI\Facades\ArtisanUI;

ArtisanUI::auth(function ($request) {
    if (app()->environment('local')) {
        return true;
    }

    return $request->check() && $request->user()->isAdmin();
});
```

Configure routes
----------------

[](#configure-routes)

You may change the path and domain of the Artisan UI routes to suit your need using the configuration file located in `config/artisan-ui.php`.

Additionally, you may use this configuration file to update the middleware of these routes. By default, the `web` middleware group is used as well as the `AuthorizeArtisanUI` middleware which protects the Artisan UI routes using the callback provided to the `ArtisanUI::auth` method above. Feel free to override that middleware for more custom authorization logic but remember that, without it, the Artisan UI routes will be available to everyone!

Configure command whitelist
---------------------------

[](#configure-command-whitelist)

You may restrict which commands are visible and executable from Artisan UI by setting `command_whitelist` in `config/artisan-ui.php`.

```
'command_whitelist' => [
    'update_game_list',
],
```

When `command_whitelist` is `null`, all artisan commands remain available.

Whitelist entries also support prefix wildcard patterns:

```
'command_whitelist' => [
    'cache:*',
    'queue:*',
],
```

You may also blacklist specific commands that should never be visible or executable from the UI:

```
'command_blacklist' => [
    'migrate:*',
    'db:*',
    'tinker',
],
```

Wildcard patterns are prefix-based and should end with `*`.

When both are configured, blacklist rules take precedence over whitelist rules.

Update assets
-------------

[](#update-assets)

If you've recently updated the package and something doesn't look right, it might be because the CSS file for the package is not up-to-date and needs to be re-published. Worry not, simply run the `artisan-ui:install` command again and you're good to go. You can even do that from the UI now! 🤯

```
php artisan artisan-ui:install
```

###  Health Score

43

—

FairBetter than 89% of packages

Maintenance82

Actively maintained with recent releases

Popularity18

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 86% 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

4

Last Release

93d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/41490b278d7fdb797c3ace46ede56a71d1858b64700d69b95f468e146ed52b7a?d=identicon)[xtheme](/maintainers/xtheme)

---

Top Contributors

[![lorisleiva](https://avatars.githubusercontent.com/u/3642397?v=4)](https://github.com/lorisleiva "lorisleiva (49 commits)")[![adithyasrinivasan](https://avatars.githubusercontent.com/u/953341?v=4)](https://github.com/adithyasrinivasan "adithyasrinivasan (6 commits)")[![xtheme](https://avatars.githubusercontent.com/u/1214832?v=4)](https://github.com/xtheme "xtheme (2 commits)")

---

Tags

laraveluiartisan

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/xtheme-artisan-ui/health.svg)

```
[![Health](https://phpackages.com/badges/xtheme-artisan-ui/health.svg)](https://phpackages.com/packages/xtheme-artisan-ui)
```

###  Alternatives

[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k4.8M48](/packages/spatie-laravel-pdf)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.8k](/packages/rawilk-profile-filament-plugin)[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

45955.7k](/packages/harris21-laravel-fuse)[vormkracht10/laravel-mails

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

24957.5k](/packages/vormkracht10-laravel-mails)[lettermint/lettermint-laravel

Official Lettermint driver for Laravel

1190.2k1](/packages/lettermint-lettermint-laravel)

PHPackages © 2026

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