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

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

This package is auto-updated.

Last update: 2024-04-22 16:09:25 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");