Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Sunshine And March Vibes (2025 Wallpapers Edition)

      May 16, 2025

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      May 16, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      May 16, 2025

      How To Prevent WordPress SQL Injection Attacks

      May 16, 2025

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025

      Bing Search APIs to be “decommissioned completely” as Microsoft urges developers to use its Azure agentic AI alternative

      May 16, 2025

      Microsoft might kill the Surface Laptop Studio as production is quietly halted

      May 16, 2025

      Minecraft licensing robbed us of this controversial NFL schedule release video

      May 16, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      The power of generators

      May 16, 2025
      Recent

      The power of generators

      May 16, 2025

      Simplify Factory Associations with Laravel’s UseFactory Attribute

      May 16, 2025

      This Week in Laravel: React Native, PhpStorm Junie, and more

      May 16, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025
      Recent

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025

      Bing Search APIs to be “decommissioned completely” as Microsoft urges developers to use its Azure agentic AI alternative

      May 16, 2025

      Microsoft might kill the Surface Laptop Studio as production is quietly halted

      May 16, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Development»A Laravel Package for the Quickpay API

    A Laravel Package for the Quickpay API

    December 27, 2024

    A Laravel Package for the Quickpay API

    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 NetbumsQuickpayFacadesQuickpay;
    
    // 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.


    The post A Laravel Package for the Quickpay API appeared first on Laravel News.

    Join the Laravel Newsletter to get all the latest
    Laravel articles like this directly in your inbox.

    Source: Read More 

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleShift left security — Good intentions, poor execution, and ways to fix it
    Next Article Deep Array Manipulation with Laravel’s replaceRecursive Method

    Related Posts

    Machine Learning

    Salesforce AI Releases BLIP3-o: A Fully Open-Source Unified Multimodal Model Built with CLIP Embeddings and Flow Matching for Image Understanding and Generation

    May 16, 2025
    Security

    Nmap 7.96 Launches with Lightning-Fast DNS and 612 Scripts

    May 16, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    How to evaluate Speech Recognition models

    Artificial Intelligence

    World’s First 60 Seconds AI Video Maker: The Future is Here?

    Artificial Intelligence

    Super Productivity is the ultimate task manager for your time management goals

    News & Updates

    Medusa Ransomware Group’s Cloud Storage Infiltrated By Security Researchers After OPSEC Blunder

    Development

    Highlights

    Development

    JSON Unicode Cast Type Added in Laravel 12.3

    March 19, 2025

    The Laravel team released v12.3.0, which includes a new JSON Unicode cast type, check linked…

    How to Code a Crossy Road Game Clone with Three.js

    February 21, 2025

    This 65-inch Insignia 4K Smart Fire TV is just $300 for July 4th

    July 3, 2024

    Two AI Releases SUTRA: A Multilingual AI Model Improving Language Processing in Over 30 Languages for South Asian Markets

    June 30, 2024
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.