PHPackages                             digikraaft/laravel-dashboard-paystack-subscriptions-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. [API Development](/categories/api)
4. /
5. digikraaft/laravel-dashboard-paystack-subscriptions-tile

ActiveLibrary[API Development](/categories/api)

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

A tile to show list of Paystack Subscriptions on Laravel Dashboard

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

Since Aug 9Pushed 5y agoCompare

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

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

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

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

[![run-tests](https://github.com/digikraaft/laravel-dashboard-paystack-subscriptions-tile/workflows/run-tests/badge.svg)](https://github.com/digikraaft/laravel-dashboard-paystack-subscriptions-tile/workflows/run-tests/badge.svg)[![Build Status](https://camo.githubusercontent.com/781f62d683fcb5eb33ce33bfe291cfb3f96de17ad7e81757a384778819953e0a/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d706179737461636b2d737562736372697074696f6e732d74696c652f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/digikraaft/laravel-dashboard-paystack-subscriptions-tile/build-status/master)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/829adfaeb358e4848b04ee2d5c0c74120019ecf298e0ce3fc8f09b8f65b10dce/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d706179737461636b2d737562736372697074696f6e732d74696c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/digikraaft/laravel-dashboard-paystack-subscriptions-tile/?branch=master)[![Code Intelligence Status](https://camo.githubusercontent.com/9648ac9c6d4b1ba8a0ab11cba99aaed20318fc19e76e7dd19b7a204b27398210/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f646967696b72616166742f6c61726176656c2d64617368626f6172642d706179737461636b2d737562736372697074696f6e732d74696c652f6261646765732f636f64652d696e74656c6c6967656e63652e7376673f623d6d6173746572)](https://scrutinizer-ci.com/code-intelligence)[![License: MIT](https://camo.githubusercontent.com/784362b26e4b3546254f1893e778ba64616e362bd6ac791991d2c9e880a3a64e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d677265656e2e737667)](https://opensource.org/licenses/MIT)

[![alt Paystack Subscriptions](docs/paystack-subscriptions-data.png)](docs/paystack-subscriptions-data.png)

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

            'subscriptions' => [
                /**
                 * the values here must be supported by the Paystack API
                 * @link https://paystack.com/docs/api/#subscription-list
                 */
                'params' => [
                    'perPage' => 4,
                ],

                /**
                 * 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 subscriptions data from Paystack, you need to schedule the `FetchSubscriptionsDataFromPaystackApi`command:

```
// in app/Console/Kernel.php
use Digikraaft\PaystackSubscriptionsTile\FetchSubscriptionsDataFromPaystackApi;

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

```

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

Usage
-----

[](#usage)

In your dashboard view you use the `livewire:paystack-subscriptions-tile` component.

```

```

You can add an optional title:

```

```

Pagination
----------

[](#pagination)

The package paginates data by default. The default value is 4. 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 31% 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

2122d ago

Major Versions

v1.0.0 → v2.0.02020-09-10

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/66417037?v=4)[digikraaft](/maintainers/digikraaft)[@digikraaft](https://github.com/digikraaft)

---

Top Contributors

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

---

Tags

laravellaravel-dashboardlaravel-dashboard-tilepaystackpaystack-dashboardpaystacklaravel-dashboarddigikraaftpaystack-dashboard

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[tallstackui/tallstackui

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

725172.4k14](/packages/tallstackui-tallstackui)[laravel/cashier

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

2.6k29.8M142](/packages/laravel-cashier)[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M188](/packages/laravel-ai)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9762.4M129](/packages/roots-acorn)[mike-bronner/laravel-model-caching

Automatic caching for Eloquent models.

2.4k90.5k1](/packages/mike-bronner-laravel-model-caching)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

45444.2k1](/packages/pressbooks-pressbooks)

PHPackages © 2026

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