PHPackages                             digikraaft/laravel-dashboard-stripe-customers-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-customers-tile

ActiveLibrary[Payment Processing](/categories/payments)

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

A tile to show list of Stripe Customers on Laravel Dashboard

v2.0(5y ago)110MITPHPPHP ^7.4

Since Aug 9Pushed 5y ago1 watchersCompare

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

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

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

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

[![run-tests](https://github.com/digikraaft/laravel-dashboard-stripe-customers-tile/workflows/run-tests/badge.svg)](https://github.com/digikraaft/laravel-dashboard-stripe-customers-tile/workflows/run-tests/badge.svg)[![Build Status](https://camo.githubusercontent.com/c30a9b4f7971ab7f584156a48e319f941c46dfe81795fc4f9203be8ea398f484/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d7374726970652d637573746f6d6572732d74696c652f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/digikraaft/laravel-dashboard-stripe-customers-tile/build-status/master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/eeabe5937b58211f0854ca7769f7e188101ba18f86fe3ef14523eea2224eb4de/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d7374726970652d637573746f6d6572732d74696c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/digikraaft/laravel-dashboard-stripe-customers-tile/?branch=master)[![Code Intelligence Status](https://camo.githubusercontent.com/1ebd56be6131ba8a95951330f19141a0fc36d50be4a3e128076ce656dc664cfd/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d7374726970652d637573746f6d6572732d74696c652f6261646765732f636f64652d696e74656c6c6967656e63652e7376673f623d6d6173746572)](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-customers-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'),

            'customers' => [

                /**
                 * the values here must be supported by the Stripe API
                 * @link https://stripe.com/docs/api/customers/list?lang=php
                 */
                'params' => [
                    'limit' => 5,
                ],

                /**
                 * 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 `FetchCustomersDataFromStripeApi`command:

```
// in app/Console/Kernel.php
use Digikraaft\StripeCustomersTile\FetchCustomersDataFromStripeApi;

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

```

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

Usage
-----

[](#usage)

In your dashboard view you use the `livewire:stripe-customers-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

Maturity57

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

Total

3

Last Release

2071d ago

Major Versions

v1.1.0 → v2.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 (15 commits)")

---

Tags

laravellaravel-dashboardlaravel-dashboard-tilestripestripe-dashboardstripelaravel-dashboarddigikraaftstripe-dashboard

###  Code Quality

TestsPHPUnit

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/digikraaft-laravel-dashboard-stripe-customers-tile/health.svg)](https://phpackages.com/packages/digikraaft-laravel-dashboard-stripe-customers-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)
