PHPackages                             yaroslawww/laravel-inertia-dashboard - 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. yaroslawww/laravel-inertia-dashboard

ActiveLibrary[Admin Panels](/categories/admin)

yaroslawww/laravel-inertia-dashboard
====================================

Laravel inertia dashboard development kit for quicker MVP ot live projects.

1.0.0(3y ago)06MITPHPPHP ^8.1

Since Nov 24Pushed 3y ago1 watchersCompare

[ Source](https://github.com/yaroslawww/laravel-inertia-dashboard)[ Packagist](https://packagist.org/packages/yaroslawww/laravel-inertia-dashboard)[ Docs](https://github.com/yaroslawww/laravel-inertia-dashboard)[ RSS](/packages/yaroslawww-laravel-inertia-dashboard/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (6)Versions (2)Used By (0)

Laravel think kit.
==================

[](#laravel-think-kit)

[![Packagist License](https://camo.githubusercontent.com/88ee8c75365bda37dc2dd266acc366427b0fb82aa1a3f5d47529239c7c16be6e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7961726f736c617777772f6c61726176656c2d696e65727469612d64617368626f6172643f636f6c6f723d253233346463373166)](https://camo.githubusercontent.com/88ee8c75365bda37dc2dd266acc366427b0fb82aa1a3f5d47529239c7c16be6e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f7961726f736c617777772f6c61726176656c2d696e65727469612d64617368626f6172643f636f6c6f723d253233346463373166)[![Packagist Version](https://camo.githubusercontent.com/392a86591508bd8933c5212d28ff4990780090f7d28199ff3e2123a8c06b8528/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7961726f736c617777772f6c61726176656c2d696e65727469612d64617368626f617264)](https://packagist.org/packages/yaroslawww/laravel-inertia-dashboard)[![Total Downloads](https://camo.githubusercontent.com/184c4943abc9ca4b5d30569b4e027c290ae399f2bac6a83e958135866b9c437c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7961726f736c617777772f6c61726176656c2d696e65727469612d64617368626f617264)](https://packagist.org/packages/yaroslawww/laravel-inertia-dashboard)[![Build Status](https://camo.githubusercontent.com/74da353e8a982d9040a565ac597089b71ff7155563a067812e0883014fe201d9/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7961726f736c617777772f6c61726176656c2d696e65727469612d64617368626f6172642f6261646765732f6275696c642e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/yaroslawww/laravel-inertia-dashboard/build-status/main)[![Code Coverage](https://camo.githubusercontent.com/7bd2fbcb1d19cd5dddc528f6e29c03a627043fbecd2ff51531d93fd6e5d63314/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7961726f736c617777772f6c61726176656c2d696e65727469612d64617368626f6172642f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/yaroslawww/laravel-inertia-dashboard/?branch=main)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/0c86e54ee386ed5fa38e17be635540d2a85a3175a441ac18359d39021fd8308c/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f7961726f736c617777772f6c61726176656c2d696e65727469612d64617368626f6172642f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://scrutinizer-ci.com/g/yaroslawww/laravel-inertia-dashboard/?branch=main)

Laravel inertia dashboard development kit for quicker MVP ot live projects.

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

[](#installation)

Install the package via composer:

```
composer require yaroslawww/laravel-inertia-dashboard
```

Optionally you can publish the config file with:

```
php artisan vendor:publish --provider="InertiaDashboardKit\ServiceProvider" --tag="config"
```

Usage
-----

[](#usage)

```
return Inertia::render('Admin/Issue/ShowPage', [
            'translations' => get_ads_translations('issue-page'),
            'indexData' => IndexData::make(
                $request,
                (new AdvAsset())->getMorphClass(),
                $lineItemIssue->assets()
            )
                                    ->perPage(9)
                                    ->useResource(
                                        AttachedAssetResource::class,
                                        [
                                            'actions' => function (AdvAsset $entity, $user, $request) use ($lineItemIssue) {
                                                $actions = [];
                                                if (
                                                    $user->can('update', $lineItemIssue)
                                                    && !$entity->pivot
                                                        ->isStatus(\App\Domain\Advertising\Enums\AssetStatus::APPROVED)
                                                ) {
                                                    $actions[] = (new DetachAction())
                                                        ->setDetachable($lineItemIssue, 'assets');
                                                }

                                                return $actions;
                                            },
                                        ]
                                    )
                                    ->bulkActions([])
                                    ->columns($columns)
                                    ->toResponseArray(),
        ]);
```

Credits
-------

[](#credits)

- [![Think Studio](https://camo.githubusercontent.com/8e541bece07d503c85a126b5294865faa00e27371048772f566a0cce8c01fd3a/68747470733a2f2f7961726f736c617777772e6769746875622e696f2f696d616765732f73706f6e736f72732f7061636b616765732f6c6f676f2d7468696e6b2d73747564696f2e706e67)](https://think.studio/)

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

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

Unknown

Total

1

Last Release

1266d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/23663794?v=4)[yaroslawww](/maintainers/yaroslawww)[@yaroslawww](https://github.com/yaroslawww)

---

Top Contributors

[![yaroslawww](https://avatars.githubusercontent.com/u/23663794?v=4)](https://github.com/yaroslawww "yaroslawww (3 commits)")

---

Tags

dashboard

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/yaroslawww-laravel-inertia-dashboard/health.svg)

```
[![Health](https://phpackages.com/badges/yaroslawww-laravel-inertia-dashboard/health.svg)](https://phpackages.com/packages/yaroslawww-laravel-inertia-dashboard)
```

###  Alternatives

[eliseekn/laravel-metrics

Generate easily metrics and trends data of your models for your dashboards.

1075.7k](/packages/eliseekn-laravel-metrics)[awes-io/indigo-layout

Basic styles and components set for building user interfaces.

4424.6k4](/packages/awes-io-indigo-layout)

PHPackages © 2026

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