PHPackages                             digikraaft/laravel-dashboard-stripe-balances-tile - 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. [Payment Processing](/categories/payments)
4. /
5. digikraaft/laravel-dashboard-stripe-balances-tile

ActiveLibrary[Payment Processing](/categories/payments)

digikraaft/laravel-dashboard-stripe-balances-tile
=================================================

A tile to show all Stripe Balances on Laravel Dashboard

v2.0.0(5y ago)191MITPHPPHP ^7.4

Since Aug 9Pushed 5y agoCompare

[ Source](https://github.com/digikraaft/laravel-dashboard-stripe-balances-tile)[ Packagist](https://packagist.org/packages/digikraaft/laravel-dashboard-stripe-balances-tile)[ Docs](https://github.com/digikraaft/laravel-dashboard-stripe-balances-tile)[ RSS](/packages/digikraaft-laravel-dashboard-stripe-balances-tile/feed)WikiDiscussions master Synced yesterday

READMEChangelog (2)Dependencies (6)Versions (3)Used By (0)

A tile to show list of Stripe Balances on Laravel Dashboard
===========================================================

[](#a-tile-to-show-list-of-stripe-balances-on-laravel-dashboard)

[![run-tests](https://github.com/digikraaft/laravel-dashboard-stripe-balances-tile/workflows/run-tests/badge.svg)](https://github.com/digikraaft/laravel-dashboard-stripe-balances-tile/workflows/run-tests/badge.svg)[![Build Status](https://camo.githubusercontent.com/74783f69d6a8d21d13274de91b2776f27f74559b9a8519218ee5160aa99e5d9c/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d7374726970652d62616c616e6365732d74696c652f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/digikraaft/laravel-dashboard-stripe-balances-tile/build-status/master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/aaa4d2999707aa752d9d6d8d3bca2c1f3b8cbbb6426d0c3cd48455c0d9d70bc5/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d7374726970652d62616c616e6365732d74696c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/digikraaft/laravel-dashboard-stripe-balances-tile/?branch=master)[![Code Intelligence Status](https://camo.githubusercontent.com/3375691ff283912796f4e3baebfb21dfd0217651b8cdff4f550da7f9a3f1b7d8/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d7374726970652d62616c616e6365732d74696c652f6261646765732f636f64652d696e74656c6c6967656e63652e7376673f623d6d6173746572)](https://scrutinizer-ci.com/code-intelligence)[![License: MIT](https://camo.githubusercontent.com/784362b26e4b3546254f1893e778ba64616e362bd6ac791991d2c9e880a3a64e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d677265656e2e737667)](https://opensource.org/licenses/MIT)

This tile displays the list of [Stripe](https://stripe.com) customers. It can be used on [the Laravel Dashboard](https://docs.spatie.be/laravel-dashboard).

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

[](#installation)

You can install the package via composer:

```
composer require digikraaft/laravel-dashboard-stripe-balances-tile
```

You need to publish the migrations and config file of the [Laravel Dashboard](https://github.com/spatie/laravel-dashboard) package. In the `dashboard` config file, you can optionally add this configuration in the tiles key and customize it for your own needs:

```
// in config/dashboard.php

'tiles' => [

        /**
         * Stripe configuration settings
         */
        'stripe' => [

            'secret_key' => env('STRIPE_SECRET'),
            'balances' => [
                /**
                 * How often should the data be refreshed in seconds
                 */
                'refresh_interval_in_seconds' => 1800,
            ],
        ],
    ],

```

You must set your `STRIPE_SECRET` in the `.env` file. You can get this from your Stripe dashboard. To load the customer data from Stripe at regular intervals, you need to schedule the `FetchBalancesDataFromStripeApi`command:

```
// in app/Console/Kernel.php
use Digikraaft\StripeBalancesTile\FetchBalancesDataFromStripeApi;

protected function schedule(Schedule $schedule)
{
    $schedule->command(FetchBalancesDataFromStripeApi::class)->twiceDaily();
}

```

You can change the frequency of the schedule as desired. You can also use the `php artisan dashboard:fetch-balances-data-from-stripe-api` command.

Usage
-----

[](#usage)

In your dashboard view you use the `livewire:stripe-balances-tile` component.

```

```

You can add an optional title:

```

```

Pagination
----------

[](#pagination)

The package paginates data by default. The default value is 5. This can be changed by adding a `perPage`property to the tile:

```

```

Testing
-------

[](#testing)

Use the command below to run your tests:

```
composer test
```

More Good Stuff
---------------

[](#more-good-stuff)

Check [here](https://github.com/digikraaft) for more awesome free stuff!

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Tim Oladoyinbo](https://github.com/timoladoyinbo)
- [All Contributors](../../contributors)

Thanks to
---------

[](#thanks-to)

- [Spatie](https://github.com/spatie/) for the [Laravel Dashboard](https://github.com/spatie/laravel-dashboard) package

License
-------

[](#license)

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

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

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

Every ~31 days

Total

2

Last Release

2071d ago

Major Versions

v1.0.0 → v2.0.02020-09-10

### Community

Maintainers

![](https://www.gravatar.com/avatar/298ea582e7fdad689b46e4fa771f3eb5caa963a9a7a76b2416dd98bada23d15f?d=identicon)[digikraaft](/maintainers/digikraaft)

---

Top Contributors

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

---

Tags

laravellaravel-dashboardlaravel-dashboard-tilestripestripe-dashboardstripelaravel-dashboarddigikraaftlaravel dashboard tilestripe-dashboard

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/digikraaft-laravel-dashboard-stripe-balances-tile/health.svg)

```
[![Health](https://phpackages.com/badges/digikraaft-laravel-dashboard-stripe-balances-tile/health.svg)](https://phpackages.com/packages/digikraaft-laravel-dashboard-stripe-balances-tile)
```

###  Alternatives

[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.5k25.9M107](/packages/laravel-cashier)[lanos/laravel-cashier-stripe-connect

Adds Stripe Connect functionality to Laravel's main billing package, Cashier.

84138.9k](/packages/lanos-laravel-cashier-stripe-connect)[simonhamp/laravel-stripe-connect

1343.1k](/packages/simonhamp-laravel-stripe-connect)[musahmusah/laravel-multipayment-gateways

A Laravel Package that makes implementation of multiple payment Gateways endpoints and webhooks seamless

852.2k1](/packages/musahmusah-laravel-multipayment-gateways)[flux-se/sylius-stripe-plugin

Sylius Stripe plugin using Payment Request

1029.3k](/packages/flux-se-sylius-stripe-plugin)

PHPackages © 2026

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