PHPackages                             digikraaft/laravel-dashboard-paystack-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. digikraaft/laravel-dashboard-paystack-customers-tile

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

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

A tile to show list of Paystack Customers on Laravel Dashboard

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

Since Aug 8Pushed 5y agoCompare

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

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

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

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

[![run-tests](https://github.com/digikraaft/laravel-dashboard-paystack-customers-tile/workflows/run-tests/badge.svg)](https://github.com/digikraaft/laravel-dashboard-paystack-customers-tile/workflows/run-tests/badge.svg)[![Build Status](https://camo.githubusercontent.com/410eef95a8aca9d6bbc2c8613379ed455715d86d7c69aca0422d5712e254bad8/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d706179737461636b2d637573746f6d6572732d74696c652f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/digikraaft/laravel-dashboard-paystack-customers-tile/build-status/master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/8fea48c645f2ef4333820a4fa87e46d07a3e5fc9ddd9bf8286dde4965a48d972/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d706179737461636b2d637573746f6d6572732d74696c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/digikraaft/laravel-dashboard-paystack-customers-tile/?branch=master)[![Code Intelligence Status](https://camo.githubusercontent.com/8a40f4b826e9f0f2a27d2745f09dc2096d0ca5f63fdf1075529c07fd5481f838/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d706179737461636b2d637573746f6d6572732d74696c652f6261646765732f636f64652d696e74656c6c6967656e63652e7376673f623d6d6173746572)](https://scrutinizer-ci.com/code-intelligence)[![License: MIT](https://camo.githubusercontent.com/784362b26e4b3546254f1893e778ba64616e362bd6ac791991d2c9e880a3a64e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d677265656e2e737667)](https://opensource.org/licenses/MIT)

[![alt Paystack Customers](docs/paystack-customers-data.png)](docs/paystack-customers-data.png)

This tile displays the list of [Paystack](https://paystack.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-paystack-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' => [
        /**
         * Paystack configuration settings
         */
        'paystack' => [

            'secret_key' => env('PAYSTACK_SECRET'),

            'customers' => [
                /**
                 * the values here must be supported by the Paystack API
                 * @link https://paystack.com/docs/api/#customer-list
                 */
                'params' => [
                    'perPage' => 100,
                    'from' => now()->subMonths(3)->toDateString(),
                    'to' => now()->toDateString(),
                ],

                /**
                 * How often should the data be refreshed in seconds
                 */
                'refresh_interval_in_seconds' => 1800,
            ],
        ],
    ],

```

You must set your `PAYSTACK_SECRET` in the `.env` file. You can get this from your Paystack dashboard. To load the customer data from Paystack, you need to schedule the `FetchCustomersDataFromPaystackApi`command:

```
// in app/Console/Kernel.php
use Digikraaft\PaystackCustomersTile\FetchCustomersDataFromPaystackApi;

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

```

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

Usage
-----

[](#usage)

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

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community6

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

Total

2

Last Release

2070d 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 (12 commits)")

---

Tags

digikraaftlaravellaravel-dashboardlaravel-dashboard-tilepaystackpaystack-dashboardphppaystacklaravel-dashboarddigikraaftpaystack-dashboard

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[wnx/laravel-stats

Get insights about your Laravel Project

1.8k1.8M7](/packages/wnx-laravel-stats)[orchestra/canvas

Code Generators for Laravel Applications and Packages

21017.2M158](/packages/orchestra-canvas)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)[interaction-design-foundation/laravel-geoip

Support for multiple Geographical Location services.

17221.0k3](/packages/interaction-design-foundation-laravel-geoip)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

116.6k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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