skygdi/checkout

There is no license information available for the latest version (v1.0.3) of this package.

A Laravel Checkout Helper, for callback checking exists transaction

Installs: 13

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/skygdi/checkout

v1.0.3 2019-01-21 23:52 UTC

This package is auto-updated.

Last update: 2025-09-22 19:20:01 UTC


README

Sometimes, we need to add a simple checkout data's table for like express payment checkout and IPN

composer require skygdi/checkout

php artisan migrate

Example:

use Skygdi\Checkout\Checkout;
Checkout::createInvoiceID("invoice_id_001");
Checkout::checkInvoiceExist("invoice_id_001");
Checkout::markAsPaid("invoice_id_001");