Download the PHP package tabbyai/laravel without Composer
On this page you can find all versions of the php package tabbyai/laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tabbyai/laravel
More information about tabbyai/laravel
Files in tabbyai/laravel
Package laravel
Short Description Laravel package for integrating with Tabby.
License MIT
Informations about the package laravel
Tabby Laravel Package
The Tabby Laravel Package (tabbyai/laravel
) provides an easy-to-use integration with Tabby, a payment gateway service, allowing developers to create seamless checkout sessions within their Laravel applications.
Features
- Easy Setup: Install via Composer and configure with API keys.
-
Checkout Management: Create and retrieve checkout sessions, including payment URLs for easy redirection.
-
Payment Management: Retrieve, update, capture, refund, close payments, and list payments with filters.
-
Webhook Management: Register, retrieve, update, and delete webhooks to receive real-time event notifications.
- Error Handling: Built-in exception management for smoother integration and user experience.
How to Use
Step 1: Installation
To install the package via Composer, run:
Step 2: Configuration
Before you use the TabbyService
, make sure you have the required API keys and configuration values. You need:
merchantCode
(your Tabby merchant code)publicKey
(your Tabby public key)secretKey
(your Tabby secret key)currency
(default isSAR
but can be changed)
Step 3: Create an Instance of TabbyService
You need to initialize an instance of TabbyService
by passing the necessary configuration values.
Step 4: Using Checkout Functions
Creating a Checkout Session
To create a checkout session, you'll need the buyer's information, order details, and shipping address.
This will return a CheckoutSession
object containing session details.
Retrieving a Checkout Session
To retrieve a previously created checkout session, use the session ID:
This will return a CheckoutSession
object containing session details.
Step 5: Using Payment Functions
Retrieve a Payment
To retrieve details of a specific payment by its ID:
Update a Payment
Capture a Payment
Capture a payment after the transaction:
Refund a Payment
Close a Payment
List of Payments
Step 6: Using Webhook Functions
Register a Webhook
To register a new webhook for receiving events from Tabby:
Retrieve All Webhooks
To retrieve all registered webhooks:
Retrieve a Specific Webhook
Update a Webhook
Delete a Specific Webhook
Exception Handling
The package throws exceptions for any failed API requests or missing configuration. Ensure to handle them properly in your code to provide a smooth user experience.
License
This package is open-source software licensed under the MIT license.