PHPackages                             starfolksoftware/tithe - 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. starfolksoftware/tithe

ActiveLibrary[Payment Processing](/categories/payments)

starfolksoftware/tithe
======================

Tithe provides subscription billing services to your Laravel applications

v1.0.2(3y ago)2195[2 PRs](https://github.com/starfolksoftware/tithe/pulls)MITPHPPHP ^8.1

Since Mar 11Pushed 2y ago1 watchersCompare

[ Source](https://github.com/starfolksoftware/tithe)[ Packagist](https://packagist.org/packages/starfolksoftware/tithe)[ Docs](https://github.com/starfolksoftware/tithe)[ RSS](/packages/starfolksoftware-tithe/feed)WikiDiscussions v1.x Synced 1mo ago

READMEChangelog (3)Dependencies (14)Versions (8)Used By (0)

Tithe provides subscription billing services to your Laravel applications
=========================================================================

[](#tithe-provides-subscription-billing-services-to-your-laravel-applications)

[![Latest Version on Packagist](https://camo.githubusercontent.com/3d19f064323e6039c4dd64f25f5a39024fd5a077db1c2794774bfb427b3c605f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f73746172666f6c6b736f6674776172652f74697468652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/starfolksoftware/tithe)[![GitHub Tests Action Status](https://camo.githubusercontent.com/8556da554f3fd34840106afcde753f73288d25fe015d19abff4e1308000477e9/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f73746172666f6c6b736f6674776172652f74697468652f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/starfolksoftware/tithe/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/4bdf02714361fd9e3f8d11500490650523b8854bdf94a2bbdcaddb4a94777510/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f73746172666f6c6b736f6674776172652f74697468652f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/starfolksoftware/tithe/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/b5849d63abaa4fa8fc9e527b4dac058735a9ad0c56814e0ca81be22bec8f29ba/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f73746172666f6c6b736f6674776172652f74697468652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/starfolksoftware/tithe)

This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.

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

[](#installation)

```
./tailwindcss -i ./resources/css/tithe.css -o ./resources/dist/tithe.css --watch
```

You can install the package via composer:

```
composer require starfolksoftware/tithe
```

You can publish, publish the config and run the migrations with:

```
php artisan tithe:install
php artisan migrate
```

This is the contents of the published config file:

```
return [
];
```

Optionally, you can publish the views using

```
php artisan vendor:publish --tag="tithe-views"
```

Configurations
--------------

[](#configurations)

To disable migrations, add the following in the service provider:

```
Redo::ignoreMigrations();
```

Usage
-----

[](#usage)

To start using it, you just have to add the given trait to your `User` model (or any entity you want to have subscriptions):

```
