PHPackages                             shawnsandy/dash - 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. shawnsandy/dash

ActiveLibrary[Admin Panels](/categories/admin)

shawnsandy/dash
===============

Dashboard for admin

v0.1.44(9y ago)2105[1 issues](https://github.com/shawnsandy/dash/issues)MITCSSPHP ~5.6|~7.0

Since Mar 28Pushed 8y ago1 watchersCompare

[ Source](https://github.com/shawnsandy/dash)[ Packagist](https://packagist.org/packages/shawnsandy/dash)[ Docs](https://github.com/shawnsandy/dash)[ RSS](/packages/shawnsandy-dash/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (10)Dependencies (3)Versions (37)Used By (0)

Dash (beta)
===========

[](#dash-beta)

[![Latest Version on Packagist](https://camo.githubusercontent.com/2c4c668ff685ad0fb589e99719da4ea8eb43f1089ee30c4dd5caa8266df55394/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f736861776e73616e64792f646173682e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/shawnsandy/dash)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/d8a377f2f18885386f4710593dc118e97a197e2c6e91cb6096b4e20899bd270d/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f736861776e73616e64792f646173682f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/shawnsandy/dash)[![Coverage Status](https://camo.githubusercontent.com/8dcf7d7426b60c82a1f4091848f32dd581c888607b98a009d9edf424cf64ee09/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f736861776e73616e64792f646173682e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/shawnsandy/dash/code-structure)[![Quality Score](https://camo.githubusercontent.com/fa739ac2df995a2c65a467c67862aa9c932fa24a04b4f8d3f5050320314093a8/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f736861776e73616e64792f646173682e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/shawnsandy/dash)[![Total Downloads](https://camo.githubusercontent.com/28885b3b07f4952db1e0642873fc1928d8251a12f2394628fd60b35776d8de45/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f736861776e73616e64792f646173682e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/shawnsandy/dash)

Dash is a Laravel package that makes Admin / UI development easier. Warning it will not do **all of your crud work**, code is required. Enjoy! (Preview Release). [Read the full docs here](/docs).

Install
-------

[](#install)

Via Composer

```
$ composer require shawnsandy/dash
```

**Add to the config/app.php providers array**

```
ShawnSandy\Dash\DashServicesProvider::class,

// dependencies
Collective\Html\HtmlServiceProvider::class,
```

**Add to config/app.php aliases array**

```
"Dash" => ShawnSandy\Dash\DashFacade::class,
"DashForms" => ShawnSandy\Dash\Builder\GenerateFormFieldsFacade::class,

// dependencies

'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
```

**Dash Routes**

You can add dash route to your `routes\wep.php` which give you access to `dashboard, content, media, pages, system, users, settings` via `/admin`.

```
Route::group(['prefix' => 'admin'], function(){
   Dash::routes();
});
```

Usage
-----

[](#usage)

**Dash Components**

*Icons based on font awesome*

```
{{ Html::dashIcons() }}
{{ Html::dashIcons("users") }} //icon name
```

*Data Table*

```
{{ Html::dataTable($users, // users data
    ["id", "name", "email", "created_at"], // columns (title)
    ['page_length' => 15, 'order' => "desc", "edit_url" => '/admin/users/'], // options
    ['class' => 'data-table'] // element attributes
    )
}}
```

\*Forms

```
{{ Form::createForm('App\User', "admin/users") }}
```

**Slot based components (Laravel 5.4^)**
----------------------------------------

[](#slot-based-components-laravel-54)

- **Info Panel**

```
@component("dash::components.panels.info", ["title" => "Users", "icon" => "circle-o"])
{{ count($users) }} Registered Users
@endcomponent
```

- **Widget**

```
@component("dash::components.panels.widget", ["title" => "Add New User(s)"])

        {{ config(["dash.forms.users.field_types.password" => "text"]) }}

        {{ Form::createForm('App\User', "admin/users") }}

@endcomponent
```

[Read the full docs here](/docs).

Change log
----------

[](#change-log)

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

Testing
-------

[](#testing)

```
$ composer test
```

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

[](#contributing)

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

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Shawn Sandy](https://github.com/shawnsandy)
- \[All Contributors\]\[link-contributors\]

License
-------

[](#license)

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

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

Established project with proven stability

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

Total

35

Last Release

3325d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/28913?v=4)[Shawn Sandy](/maintainers/shawnsandy)[@shawnsandy](https://github.com/shawnsandy)

---

Top Contributors

[![shawnsandy](https://avatars.githubusercontent.com/u/28913?v=4)](https://github.com/shawnsandy "shawnsandy (257 commits)")

---

Tags

laraveldashshawnsandy

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/shawnsandy-dash/health.svg)

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

PHPackages © 2026

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