PHPackages                             schmeits/pulse-database-table-info - 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. schmeits/pulse-database-table-info

ActiveLibrary

schmeits/pulse-database-table-info
==================================

A Laravel Pulse card displaying the table info of the current database.

1.7.2(1y ago)733.5k—7.8%2[5 PRs](https://github.com/schmeits/pulse-database-table-info/pulls)MITPHPPHP ^8.1CI passing

Since Jan 25Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/schmeits/pulse-database-table-info)[ Packagist](https://packagist.org/packages/schmeits/pulse-database-table-info)[ Docs](https://github.com/schmeits/pulse-database-table-info)[ GitHub Sponsors](https://github.com/schmeits)[ RSS](/packages/schmeits-pulse-database-table-info/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (15)Versions (24)Used By (0)

A Laravel Pulse card displaying the table info of the current database.
=======================================================================

[](#a-laravel-pulse-card-displaying-the-table-info-of-the-current-database)

[![Latest Version on Packagist](https://camo.githubusercontent.com/2a11d374c4bd923673b61b750049fdcb0725cd05c4e3b3b721cf5dd2bc46c1d4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7363686d656974732f70756c73652d64617461626173652d7461626c652d696e666f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/schmeits/pulse-database-table-info)[![GitHub Tests Action Status](https://camo.githubusercontent.com/227a933fbea08fc66d8dcd53520608751d29972fb3821dbc4d485e9d61418b97/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7363686d656974732f70756c73652d64617461626173652d7461626c652d696e666f2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/schmeits/pulse-database-table-info/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/f9878d09b2a83c0dfa4dfb283ba9908d1b0a3f78ed90f5ac6919c2161fc9ef3e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7363686d656974732f70756c73652d64617461626173652d7461626c652d696e666f2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/schmeits/pulse-database-table-info/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/36885b42c90a0ba48016e3aee39291352b1c5a9177d8d1f008f259c9dce58ffa/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7363686d656974732f70756c73652d64617461626173652d7461626c652d696e666f2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/schmeits/pulse-database-table-info)

This pulse card displays the tables in the database with their corresponding info (size and rows).

[![example-screenshot.png](docs-assets%2Fscreenshots%2Fexample-screenshot.png)](docs-assets%2Fscreenshots%2Fexample-screenshot.png)

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

[](#installation)

You can install the package via composer:

```
composer require schmeits/pulse-database-table-info
```

Register the recorder
---------------------

[](#register-the-recorder)

To run the checks you must add the `TableInfoRecorder` to the `pulse.php` file.

```
return [
    // ...

    'recorders' => [
+        \Schmeits\Pulse\DatabaseTableInfo\Recorders\TableInfoRecorder::class => [],
    ]
]
```

You also need to be running [the `pulse:check` command](https://laravel.com/docs/10.x/pulse#dashboard-cards).

Configure the recorder
----------------------

[](#configure-the-recorder)

```
\Schmeits\Pulse\DatabaseTableInfo\Recorders\TableInfoRecorder::class => [
    'enabled' => env('PULSE_DATABASE_TABLE_ENABLED', true), // ebabling the recorder
    'ignore' => [
        '#^pulse#', // Ignore pulse entries...
        '#^telescope#', // Ignore telescope entries...
        '#^health_check_result#', // ignore health_check_results
    ],
],
```

Add to your dashboard
---------------------

[](#add-to-your-dashboard)

To add the card to the Pulse dashboard, you must first [publish the vendor view](https://laravel.com/docs/10.x/pulse#dashboard-customization).

Then, you can modify the `dashboard.blade.php` file:

```

+

```

That's it :)

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

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

Credits
-------

[](#credits)

- [Tally Schmeits](https://github.com/schmeits)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

48

—

FairBetter than 95% of packages

Maintenance70

Regular maintenance activity

Popularity36

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

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

Recently: every ~113 days

Total

17

Last Release

392d ago

PHP version history (2 changes)1.0.0PHP ^8.1

1.6.0PHP ^8.2

### Community

Maintainers

![](https://www.gravatar.com/avatar/f1103cf2205326b63f12075bfa1ebb0132d146d052222f6b847d86d62c5d2514?d=identicon)[schmeits](/maintainers/schmeits)

---

Top Contributors

[![schmeits](https://avatars.githubusercontent.com/u/3034840?v=4)](https://github.com/schmeits "schmeits (80 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (11 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (9 commits)")[![crazynds](https://avatars.githubusercontent.com/u/36674096?v=4)](https://github.com/crazynds "crazynds (1 commits)")

---

Tags

laravellivewirephppulselaravellivewirepulseschmeitspulse-database-table-info

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/schmeits-pulse-database-table-info/health.svg)

```
[![Health](https://phpackages.com/badges/schmeits-pulse-database-table-info/health.svg)](https://phpackages.com/packages/schmeits-pulse-database-table-info)
```

###  Alternatives

[spatie/livewire-filepond

Upload files using Filepond in Livewire components

306452.7k3](/packages/spatie-livewire-filepond)[christophrumpel/missing-livewire-assertions

This package adds missing livewire test assertions.

149336.0k9](/packages/christophrumpel-missing-livewire-assertions)[bezhansalleh/filament-google-analytics

Google Analytics integration for FilamentPHP

205144.8k5](/packages/bezhansalleh-filament-google-analytics)[hosmelq/laravel-pulse-schedule

Laravel Pulse card that list all scheduled tasks.

60423.4k](/packages/hosmelq-laravel-pulse-schedule)[vormkracht10/laravel-mails

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

24149.7k](/packages/vormkracht10-laravel-mails)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

33184.7k6](/packages/schmeits-filament-character-counter)

PHPackages © 2026

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