PHPackages                             steadfastcollective/cashier-extended - 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. steadfastcollective/cashier-extended

ActiveLibrary

steadfastcollective/cashier-extended
====================================

4.0.3(4y ago)02.0k1MITPHPPHP ^7.2|^8.0CI failing

Since Jun 12Pushed 4y ago1 watchersCompare

[ Source](https://github.com/steadfast-collective/cashier-extended)[ Packagist](https://packagist.org/packages/steadfastcollective/cashier-extended)[ Docs](https://github.com/steadfastcollective/cashier-extended)[ RSS](/packages/steadfastcollective-cashier-extended/feed)WikiDiscussions 4.x Synced today

READMEChangelog (10)Dependencies (4)Versions (17)Used By (0)

[![](https://camo.githubusercontent.com/a12ac354f9d1ef63a2cbbbf92e4a4ca7f33ba87cc6a23bffed1298ebc847f713/68747470733a2f2f647a776f6e73656d72697368372e636c6f756466726f6e742e6e65742f6974656d732f307431443078314d3338315930663258305130632f4c61726176656c5f436173686965724032782e706e673f763d3735303162313132)](https://camo.githubusercontent.com/a12ac354f9d1ef63a2cbbbf92e4a4ca7f33ba87cc6a23bffed1298ebc847f713/68747470733a2f2f647a776f6e73656d72697368372e636c6f756466726f6e742e6e65742f6974656d732f307431443078314d3338315930663258305130632f4c61726176656c5f436173686965724032782e706e673f763d3735303162313132)

[![Total Downloads](https://camo.githubusercontent.com/b9e5d08096073fb6ff15d21f96816ce0332dca06d90dfa94dccc9a192b634287/68747470733a2f2f706f7365722e707567782e6f72672f737465616466617374636f6c6c6563746976652f636173686965722d657874656e6465642f642f746f74616c2e737667)](https://packagist.org/packages/steadfastcollective/cashier-extended)[![Latest Stable Version](https://camo.githubusercontent.com/bcd72f12968c7e596e007739b6beeab14fa42a6e76109cefaf72303ae80960f6/68747470733a2f2f706f7365722e707567782e6f72672f737465616466617374636f6c6c6563746976652f636173686965722d657874656e6465642f762f737461626c652e737667)](https://packagist.org/packages/steadfastcollective/cashier-extended)[![License](https://camo.githubusercontent.com/44c1e6ac49c5518a6784d1760a422726339d6b55f822e620a81c478e18f58cce/68747470733a2f2f706f7365722e707567782e6f72672f737465616466617374636f6c6c6563746976652f636173686965722d657874656e6465642f6c6963656e73652e737667)](https://packagist.org/packages/steadfastcollective/cashier-extended)

Introduction
------------

[](#introduction)

Laravel Cashier provides an expressive, fluent interface to [Stripe's](https://stripe.com) subscription billing services. It handles almost all of the boilerplate subscription billing code you are dreading writing. In addition to basic subscription management, Cashier can handle coupons, swapping subscription, subscription "quantities", cancellation grace periods, and even generate invoice PDFs.

Cashier Extended improves upon the core of Laravel Cashier by adding a store of Charges made, and additional methods to query them, as well as webhooks to keep this updated.

Official Documentation
----------------------

[](#official-documentation)

Documentation for Laravel Cashier can be found on the [Laravel website](https://laravel.com/docs/billing), there are several changes to make when using Laravel Cashier Extended, which are detailed below.

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

[](#installation)

To get started install the package from composer:

```
composer require steadfastcollective/cashier-extended
```

The package will automatically register the service provider and facade.

Next publish the migrations with:

```
php artisan vendor:publish --provider="SteadfastCollective\CashierExtended\CashierExtendedServiceProvider" --tag="migrations"
```

and then run them:

```
php artisan migrate
```

As noted before, we have made a couple of changes to how you use the Cashier package these are detailed below.

The Billable trait has been updated and should use the new namespace:

```
