PHPackages                             digikraaft/laravel-dashboard-paystack-transactions-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. digikraaft/laravel-dashboard-paystack-transactions-tile

ActiveLibrary

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

A tile to show list of Paystack Transactions on Laravel Dashboard

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

Since Aug 9Pushed 5y agoCompare

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

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

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

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

[![run-tests](https://github.com/digikraaft/laravel-dashboard-paystack-transactions-tile/workflows/run-tests/badge.svg)](https://github.com/digikraaft/laravel-dashboard-paystack-transactions-tile/workflows/run-tests/badge.svg)[![Build Status](https://camo.githubusercontent.com/f58114f39b986b0dcd8b43cb3d17a60ab20e32da58cec01086e896a14a0b0a04/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d706179737461636b2d7472616e73616374696f6e732d74696c652f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/digikraaft/laravel-dashboard-paystack-transactions-tile/build-status/master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/f266c4bf50a7de73a79706aca3c08ae1f000c44c445a9ea50dd2cca13696be06/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d706179737461636b2d7472616e73616374696f6e732d74696c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/digikraaft/laravel-dashboard-paystack-transactions-tile/?branch=master)[![Code Intelligence Status](https://camo.githubusercontent.com/8d32927fd975c99893d8667cff6f66fddc0b7619f9d272c1d9312405cc860527/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d706179737461636b2d7472616e73616374696f6e732d74696c652f6261646765732f636f64652d696e74656c6c6967656e63652e7376673f623d6d6173746572)](https://scrutinizer-ci.com/code-intelligence)[![License: MIT](https://camo.githubusercontent.com/784362b26e4b3546254f1893e778ba64616e362bd6ac791991d2c9e880a3a64e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d677265656e2e737667)](https://opensource.org/licenses/MIT)

[![alt Paystack Transactions](docs/paystack-transactions-data.png)](docs/paystack-transactions-data.png)

This tile displays the list of [Paystack](https://paystack.com) transactions. 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-transactions-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'),

            'transactions' => [
                /**
                 * the values here must be supported by the Paystack API
                 * @link https://paystack.com/docs/api/#transaction-list
                 */
                'params' => [
                    'perPage' => 5,
                    '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 transactions data from Paystack, you need to schedule the `FetchTransactionsDataFromPaystackApi`command:

```
// in app/Console/Kernel.php
use Digikraaft\PaystackTransactionsTile\FetchTransactionsDataFromPaystackApi;

protected function schedule(Schedule $schedule)
{
    $schedule->command(FetchTransactionsDataFromPaystackApi::class)->daily();
}

```

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

Usage
-----

[](#usage)

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

Popularity4

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

Total

2

Last Release

2073d 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-tilepaystackpaystack-dashboardpaystacklaravel-dashboarddigikraaftpaystack-dashboard

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[laravel/cashier

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

2.5k25.9M107](/packages/laravel-cashier)[tucker-eric/eloquentfilter

An Eloquent way to filter Eloquent Models

1.8k4.8M26](/packages/tucker-eric-eloquentfilter)[laravel-doctrine/orm

An integration library for Laravel and Doctrine ORM

8425.3M87](/packages/laravel-doctrine-orm)[tallstackui/tallstackui

TallStackUI is a powerful suite of Blade components that elevate your workflow of Livewire applications.

703141.0k7](/packages/tallstackui-tallstackui)[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)[aedart/athenaeum

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

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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