2017 © Pedro Peláez
 

library billing

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

image

ptuchik/billing

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  • Friday, July 27, 2018
  • by ptuchik
  • Repository
  • 2 Watchers
  • 3 Stars
  • 534 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 42 Versions
  • 146 % Grown

The README.md

Billing

WARNING!!! If you are already using v1.x version, please stay on it, v2.x may have some backward incompatibilities..., (*1)

Sell anything for everything...

Latest Stable Version Total Downloads, (*2)

Billing package for Laravel 5.5+ supporting packages, plans, coupons, addons, payments and subscriptions with multi currencies, (*3)


Structure:

The structure is the following: - Billable - Model that will pay for everything - Hostable - Model for which can be purchased everything - Package - Model that can be purchased - Plan - Model that will sell the Package - Reference - Can be any model, that will be purchased with Package - Coupon - Discount, which can be applied on Plan purchase, (*4)


Concept

The concept is the following: To be able to use this package, firstly you need to add Billable trait to your billable model and implement Billable interface (usually it is User model). Hostable models have to implement Hostable interface and use Hostable trait, which will add Purchases relation to model. All packages have to be extended from PackageModel abstract class. That's it!, (*5)

P. S. Everything is overridable from configuration, provided by package, (*6)


Installation

composer require ptuchik/billing

After composer installation, just run php artisan migrate as usual, to have the additional tables added to your database and publish configurations by executing:, (*7)

php artisan vendor:publish --provider="Torann\Currency\CurrencyServiceProvider" --tag=config
php artisan vendor:publish --provider="Ptuchik\Billing\Providers\BillingServiceProvider" --tag=config
php artisan vendor:publish --provider="Ptuchik\CoreUtilities\Providers\CoreUtilitiesServiceProvider" --tag=config

IMPORTANT! Your billable model has to have the following attributes: - balance - cast: numeric - paymentGateway - cast: string - paymentProfiles - cast: array - currency - cast: string - params - cast: array, (*8)

and isTester() method, which will indicate if your billable model is tester or customer, to set the correct mode of payment gateway environment. If you don't need testers, you can just create the following method in your billable model:, (*9)

public function isTester() {
    return false;
}

Usage

To get the plan details, with trial days calculation and summary (all coupons and available balance discounts applied) for current user on current host, just call:, (*10)

$plan->prepare($hostable); // Will return plan with all calculations applied for logged in user

To purchase the plan, just call:, (*11)

$plan->purchase($hostable); // It will do the rest automagically

Documentation

Coming soon..., (*12)


Special thanks to

The Versions

27/07 2018

dev-develop

dev-develop

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

27/07 2018

dev-feature/uc9451

dev-feature/uc9451

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

25/05 2018

dev-master

9999999-dev

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

25/05 2018

1.1.6

1.1.6.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

25/05 2018

1.1.5

1.1.5.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

25/05 2018

1.1.4

1.1.4.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

25/05 2018

1.1.3

1.1.3.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

25/05 2018

2.0.0

2.0.0.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

24/05 2018

1.1.2

1.1.2.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

24/05 2018

1.1.1

1.1.1.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

24/05 2018

1.1.0

1.1.0.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

23/05 2018

1.0.30

1.0.30.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

21/05 2018

1.0.29

1.0.29.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

21/05 2018

1.0.28

1.0.28.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

21/05 2018

1.0.27

1.0.27.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

21/05 2018

1.0.26

1.0.26.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

21/05 2018

1.0.25

1.0.25.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

21/05 2018

1.0.24

1.0.24.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

18/05 2018

1.0.23

1.0.23.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

18/05 2018

1.0.22

1.0.22.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

10/05 2018

1.0.21

1.0.21.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

10/05 2018

1.0.20

1.0.20.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

04/05 2018

1.0.19

1.0.19.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

03/05 2018

1.0.18

1.0.18.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

27/04 2018

1.0.17

1.0.17.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

27/04 2018

1.0.16

1.0.16.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

14/03 2018

1.0.15

1.0.15.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

13/03 2018

1.0.14

1.0.14.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

13/03 2018

1.0.13

1.0.13.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

01/03 2018

1.0.12

1.0.12.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

laravel purchase discounts billing currencies subscriptions coupons plans ptuchik

01/03 2018

1.0.11

1.0.11.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

01/03 2018

1.0.10

1.0.10.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

01/03 2018

1.0.9

1.0.9.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

28/02 2018

1.0.8

1.0.8.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

28/02 2018

1.0.7

1.0.7.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

28/02 2018

1.0.6

1.0.6.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

28/02 2018

1.0.5

1.0.5.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

28/02 2018

1.0.4

1.0.4.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

27/02 2018

1.0.3

1.0.3.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

27/02 2018

1.0.2

1.0.2.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

27/02 2018

1.0.1

1.0.1.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan

27/02 2018

1.0.0

1.0.0.0

Billing package for Laravel 5.5 supporting packages, plans, coupons, addons, payments and subscriptions

  Sources   Download

MIT

The Requires

 

by Avik Aghajanyan