Laravel Packages

A Laravel Package for the Quickpay API

Published
A Laravel Package for the Quickpay API image

The Quickpay package for Laravel, by Morten Bak, helps you quickly utilize the Quickpay API client using a fluent object and service Facade. Quickpay allows you to accept payments securely and reliably, and this package can help you interface with your user's data via the API:

use \Netbums\Quickpay\Facades\Quickpay;
 
// Get all payments
$payments = Quickpay::payments()->all();
 
// Get a single payment
$payment = Quickpay::payments()->find($paymentId);
 
// Create a payment link
$paymentLink = Quickpay::payments()->createLink(new PaymentLink(
id: $createdPayment['id'],
amount: 100
));
 
// Refund a payment
$payment = Quickpay::payments()->refund(
id: $paymentId,
amount: 100,
);

Main Features

  • Capture a payment
  • Refund a payment
  • Authorize a payment
  • Cancel a payment
  • Create a payment with a basket of items and a unique order ID
  • Create a payment link and redirect the user to it
  • Create a fraud report for a payment
  • A payment link with custom continue, cancel, and callback URIs

You can learn more about this package, get full installation instructions, and view the source code on GitHub at mortenebak/laravel-quickpay. You can learn more about the Quickpay API via the documentation and the quickpay-php-client Composer package.

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
Laravel AI SDK 1.0 Adds Classification and Tool Approvals image

Laravel AI SDK 1.0 Adds Classification and Tool Approvals

Read article
Tagged Memoized Cache and Model Refreshes in Laravel 13.33 image

Tagged Memoized Cache and Model Refreshes in Laravel 13.33

Read article
Laravel Live Denmark 2026 Talks Are Now on YouTube image

Laravel Live Denmark 2026 Talks Are Now on YouTube

Read article
Live Stream: Building a Social Network in PHP in 48 Hours image

Live Stream: Building a Social Network in PHP in 48 Hours

Read article
Health for Laravel: Kubernetes Probes and Prometheus Metrics image

Health for Laravel: Kubernetes Probes and Prometheus Metrics

Read article
Fast Excel 5.x Adds Streaming Imports and Safer Exports image

Fast Excel 5.x Adds Streaming Imports and Safer Exports

Read article