escolalms/vouchers

Escola LMS Vouchers

Installs: 5 862

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 0

Type:package

0.1.21 2024-02-14 13:41 UTC

README

swagger codecov phpunit downloads downloads downloads Maintainability

Purpose

This package lets you define Coupons that can be applied to User Cart before placing an Order, calculating a discount depending on multiple different, configurable rules.

Installation

  • composer require escolalms/vouchers
  • php artisan migrate
  • php artisan db:seed --class="EscolaLms\Vouchers\Database\Seeders\VoucherPermissionsSeeder"

Dependencies

This package depends (and extends) on EscolaLms/Cart package and can not be used separately.

Usage

Coupon rules

Every coupon defines set of rules that are checked when User tries to add Coupon to Cart. Only if all conditions are met, coupon (discount) can be applied to given Cart content. Some of the conditions work differently depending on type of coupon.

  • Min/max amount - cart value must be at least "min" amount, and if cart value is above "max" amount, discount is only calculated as if value was at the "max" level
  • Usage limits - coupons can not be used after their global or per user limits are reached
  • Exclude promotions - coupon can not be used if products with already discounted price are in the Cart

Types of coupon

This package defines four type of discounts, that represent four separate strategies for calculating discount. There are two types that relate to whole Cart and two types that relate to specified Products.

Fixed Cart amount coupon

Coupon of type EscolaLms\Vouchers\Enums::CART_FIXED substracts constant amount from total price of Cart. See EscolaLms\Vouchers\Strategies\CartFixedDiscountStrategy.

  • At least one of "included products" must be in Cart
  • None of "excluded products" must be in Cart
  • At least one of "included categories" must be in Cart
  • None of "exclude categories" must be in Cart

Percent Cart amount coupon

Coupon of type EscolaLms\Vouchers\Enums::CART_PERCENT substracts percentage based amount from total price of Cart, but only for Products not in "excluded products" or "excluded categories" list. See EscolaLms\Vouchers\Strategies\CartPercentDiscountStrategy.

  • At least one of "included products" must be in Cart
  • At least one of "included categories" must be in Cart

Fixed Product coupon

Coupon of type EscolaLms\Vouchers\Enums::PRODUCT_FIXED substracts constant amount from Product price, but only once per unique Product. Product must be specified in "included products". See EscolaLms\Vouchers\Strategies\ProductFixedDiscountStrategy.

Percent Product coupon

Coupon of type EscolaLms\Vouchers\Enums::PRODUCT_FIXED substracts percentage based amount from Product price. Product must be specified in "included products". See EscolaLms\Vouchers\Strategies\ProductPercentDiscountStrategy.

How to use Coupon

Coupon can be added to Cart using POST /api/cart/voucher/ endpoint.

Endpoints

All the endpoints are defined in swagger.

Tests

Run ./vendor/bin/phpunit to run tests. See tests directory.

Test details codecov phpunit

Events

There are no events emitted by this package.

Listeners

There are no listeners specified in this package.

How to use this on frontend

Admin panel

Menu

Menu

List of Coupons

List of Coupons

Creating/editing Coupon

Creating/editing Coupon

Permissions

Permissions are defined in Enum and seeded in Seeder.

Roadmap. Todo. Troubleshooting

  • endpoint for removing Coupon from Cart