Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Laravel Mollie Laravel Package

mollie/laravel-mollie

Laravel integration for Mollie payments. Easily set up the Mollie API client via configuration and service container, handle payments, refunds, and subscriptions, and keep your checkout flow clean with a simple, idiomatic Laravel package.

View on GitHub
Deep Wiki
Context7

create new payment

Laravel-Mollie incorporates the Mollie API and Mollie Connect into your Laravel project.

Accepting iDEAL, Apple Pay, Bancontact/Mister Cash, SOFORT Banking, Creditcard, SEPA Bank transfer, SEPA Direct debit, PayPal, Belfius Direct Net, KBC/CBC, paysafecard, ING Home'Pay, Giftcards, Giropay, EPS and Przelewy24 online payments without fixed monthly costs or any punishing registration procedures. Just use the Mollie API to receive payments directly on your website or easily refund transactions to your customers.****

Looking for a complete recurring billing solution? Take a look at Laravel Cashier for Mollie instead.

Build Status Latest Stable Version Total Downloads

Requirements

  • Get yourself a free Mollie account. No sign up costs.
  • Now you're ready to use the Mollie API client in test mode.
  • Follow a few steps to enable payment methods in live mode, and let us handle the rest.
  • Up-to-date OpenSSL (or other SSL/TLS toolkit)
  • PHP >= 8.2
  • Laravel >= 11.0
  • Laravel Socialite >= 5.0 (if you intend on using Mollie Connect)

Upgrading from v3.x?

To support the enhanced Mollie API v3, some breaking changes were introduced. Make sure to follow the instructions in the upgrade guide.

Fresh install? Continue with the installation guide below.

Installation

Add Laravel-Mollie to your composer file via the composer require command:

composer require mollie/laravel-mollie

Or add it to composer.json manually:

"require": {
    "mollie/laravel-mollie": "^4.0"
}

Laravel-Mollie's service providers will be automatically registered using Laravel's auto-discovery feature.

Configuration

You'll only need to add the MOLLIE_KEY variable to your .env file.

MOLLIE_KEY=test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Example usage

Here you can see an example of just how simple this package is to use.

A payment using the Mollie API

use Mollie\Api\Http\Data\Money;
use Mollie\Laravel\Facades\Mollie;
use Mollie\Api\Http\Requests\GetPaymentRequest;
use Mollie\Api\Http\Requests\CreatePaymentRequest;

public function preparePayment()
{
    $request = new CreatePaymentRequest(
        description: 'Order #12345',
        amount: new Money('EUR', '10.00'),
        redirectUrl: route('order.success'),
        webhookUrl: route('webhooks.mollie'),
        metadata: [
            "order_id" => "12345",
            "customer_info" => [
                "name" => "John Doe",
                "email" => "john@example.com"
            ]
        ]
    );

    Mollie::send($request);

    // redirect customer to Mollie checkout page
    return redirect($payment->getCheckoutUrl(), 303);
}

/**
 * After the customer has completed the transaction,
 * you can fetch, check and process the payment.
 * This logic typically goes into the controller handling the inbound webhook request.
 * See the webhook docs in /docs and on mollie.com for more information.
 */
public function handleWebhookNotification(Request $request) {
    $paymentId = $request->input('id');

    $payment = Mollie::send(new GetPaymentRequest($paymentId));

    if ($payment->isPaid())
    {
        echo 'Payment received.';
        // Do your thing ...
    }
}

Other examples

Want to help us make our Laravel module even better?

Want to help us make our Laravel module even better? We take pull requests, sure. But how would you like to contribute to a technology oriented organization? Mollie is hiring developers and system engineers. Check out our vacancies or get in touch.

License

The MIT License. Copyright (c) 2024, Mollie B.V.

Support

Contact: www.mollie.cominfo@mollie.com

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
directorytree/privacy-filter-classifier
directorytree/privacy-filter
datacore/hub-sdk
develia/commons
cuci/prototurk-sdk
cuci/prototurk-sdk-symfony
develia/geo-bundle
dreamzy/livewire-charts
touchestate-sdk/php-sdk
22h/doctrine-garbage-collection-bundle
agtp/agtp-php
agtp/mod-php
splash/sonata-admin
splash/metadata
splash/openapi
splash/scopes
splash/toolkit
testo/output-teamcity
testo/bridge-symfony
spatie/flare-daemon-runtime