PHPackages                             dashworthy/visualizations - 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. dashworthy/visualizations

ActiveLibrary[Framework](/categories/framework)

dashworthy/visualizations
=========================

A framework for building data visualizations in Laravel — DataGrids, Charts, and Metrics.

0.3.0(3w ago)093[1 PRs](https://github.com/dashworthy/visualizations/pulls)1MITPHPPHP ^8.3CI passing

Since Jun 15Pushed 3w agoCompare

[ Source](https://github.com/dashworthy/visualizations)[ Packagist](https://packagist.org/packages/dashworthy/visualizations)[ Docs](https://github.com/dashworthy/visualizations)[ GitHub Sponsors](https://github.com/dashworthy)[ RSS](/packages/dashworthy-visualizations/feed)WikiDiscussions 0.x Synced 2w ago

READMEChangelog (3)Dependencies (24)Versions (7)Used By (1)

[![Visualizations](art/banner.svg)](art/banner.svg)

[![Latest Version on Packagist](https://camo.githubusercontent.com/f5f8ce35fc3cdee7b121700bfa2d62c718984e67df20b35629b9e292c2768c74/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f64617368776f727468792f76697375616c697a6174696f6e732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dashworthy/visualizations)[![GitHub Tests Action Status](https://camo.githubusercontent.com/44a809011893f44f679513be691fa6d6e48abf4dfa54fb0a857d48eb90fbd943/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f64617368776f727468792f76697375616c697a6174696f6e732f72756e2d74657374732e796d6c3f6272616e63683d312e78266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/dashworthy/visualizations/actions?query=workflow%3Arun-tests+branch%3A1.x)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/823606c029f53d344aaa748cdaa02db99efb25164fad0877244b7a530d2186cf/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f64617368776f727468792f76697375616c697a6174696f6e732f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d312e78266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/dashworthy/visualizations/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3A1.x)[![Total Downloads](https://camo.githubusercontent.com/9f84485533e2bbde9d6b2199e25016bac422101b91e5546df4827c9171526dba/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f64617368776f727468792f76697375616c697a6174696f6e732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/dashworthy/visualizations)

A Laravel package for building data visualizations. Define DataGrids, Charts, and Metrics as PHP classes — the package handles query generation, filtering, sorting, pagination, and schema generation for your front end.

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

[](#installation)

```
composer require dashworthy/visualizations
php artisan vendor:publish --tag="visualizations-migrations"
php artisan migrate
```

Quick Example
-------------

[](#quick-example)

```
use Dashworthy\Visualizations\DataGrids\Abstracts\DataGrid;
use Dashworthy\Visualizations\DataGrids\Columns\Number;
use Dashworthy\Visualizations\DataGrids\Columns\Text;

class UserDataGrid extends DataGrid
{
    public function getColumns(): Collection
    {
        return collect([
            Number::make('users.id', 'ID')->asRowKey(),
            Text::make('users.name', 'Name'),
            Text::make('users.email', 'Email'),
        ]);
    }

    public function getQuery(): Builder
    {
        return DB::table('users');
    }
}
```

```
// routes/api.php
Route::dataGrid(UserDataGrid::class);
Route::chart(RevenueChart::class);
```

Documentation
-------------

[](#documentation)

Full documentation is available at [the documentation site](https://visualizations.dashworthy.com).

Testing
-------

[](#testing)

```
composer test
```

License
-------

[](#license)

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

###  Health Score

42

—

FairBetter than 88% of packages

Maintenance94

Actively maintained with recent releases

Popularity14

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 87.5% 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 ~7 days

Total

4

Last Release

27d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/37b954ddfe95a6bdc825f5e679aa650f13035c7f9846afd4f88d906957d356ca?d=identicon)[Andrew Leach](/maintainers/Andrew%20Leach)

---

Top Contributors

[![andyleach](https://avatars.githubusercontent.com/u/7387639?v=4)](https://github.com/andyleach "andyleach (7 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (1 commits)")

---

Tags

laravelMetricschartsvisualizationsdatagridsDashworthy

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/dashworthy-visualizations/health.svg)

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

###  Alternatives

[spatie/laravel-permission

Permission handling for Laravel 12 and up

12.9k107.5M1.6k](/packages/spatie-laravel-permission)[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.2k12.6M122](/packages/dedoc-scramble)[stephenjude/filament-jetstream

A Laravel starter kit built with Filament inspired by Jetstream.

17861.9k3](/packages/stephenjude-filament-jetstream)[harris21/laravel-fuse

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

24773.9k](/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.

25060.1k](/packages/vormkracht10-laravel-mails)[rawilk/profile-filament-plugin

Profile &amp; MFA starter kit for filament.

3914.8k](/packages/rawilk-profile-filament-plugin)

PHPackages © 2026

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