PHPackages                             loovpayment/laravel-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. loovpayment/laravel-sdk

ActiveLibrary

loovpayment/laravel-sdk
=======================

loov payment solution

1.1.1(2y ago)07MITPHPPHP ^8.1

Since Oct 16Pushed 2y ago1 watchersCompare

[ Source](https://github.com/Mounir-Holding-Tech/loovpayment_laravel_sdk)[ Packagist](https://packagist.org/packages/loovpayment/laravel-sdk)[ RSS](/packages/loovpayment-laravel-sdk/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelogDependencies (4)Versions (3)Used By (0)

[![Build Status](https://github.com/laravel/framework/workflows/tests/badge.svg)](https://packagist.org/packages/loov-payment/laravel-sdk)[![Total Downloads](https://camo.githubusercontent.com/b0a7ee2f3f0208712ecb1081b9d6fcf05045c10cd6f345abcb924f5512c0d346/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c2f6672616d65776f726b)](https://packagist.org/packages/loov-payment/laravel-sdk)[![Latest Stable Version](https://camo.githubusercontent.com/9e6071b5dd1a4a3bcabe3cca9d97a447d030caeb940f2adbd18699bc0b326702/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c2f6672616d65776f726b)](https://packagist.org/packages/loov-payment/laravel-sdk)[![License](https://camo.githubusercontent.com/4a64c31c71966d152c876eea1f35e85fbd33d57ddf5754260a41f053aa72c5b2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6c61726176656c2f6672616d65776f726b)](https://packagist.org/packages/loov-payment/laravel-sdk)

Introduction
------------

[](#introduction)

Loov Solutions is an online payment tool.

Installation
------------

[](#installation)

Run this in your terminal to install loov from comand line

```
composer require loovpayment/laravel-sdk
```

Requirements
------------

[](#requirements)

- **amount**: The payment amount in the specified currency.
- **currency**: The currency code of the payment amount.
- **description**: Description of the payment purpose.
- **username**: Customer name.
- **email**: Customer email.
- **operator**: The mobile operator code used for the payment (e.g., "orange-money-cm")
- **phoneNumber**: Customer phone number.
- **return\_url**: URL to redirect after successful payment.
- **cancel\_url**: URL to redirect if payment is canceled.
- **callback\_url**: URL for payment notifications (webhook).
- **payment\_mode**: The chosen payment mode. value: **ALL**, **CARD**, **MOBILE\_MONEY**.************

******Pay In
------

[](#pay-in)

```
50000,
        'currency' => 'XAF',
        'payment_mode' => 'CARD',
        "return_url" => "https://google.com?state=return_url",
        "cancel_url" => "https://google.com?state=cancel",
        "callback_url" => "https://webhook.site/9c647add-6b43-4832-bd5d-db529c7c9b79",
        "description" => "test payment de service en ligne",
        "name" => "Arolle Fona",
        "email" =>"arolle000@gmail.com",
        "phoneNumber" => "237699009999"
     ];

     $response = (new LoovPay())->setKeys(AppKey MerchantKey)->payIn($data);
     return $response;
    }

}
```****** Success Response

Upon successful payment initiation, the API will respond with a status code of 200 along with the following response body:

```
{
    "status": 200,
    "message": "Payment initiated",
    "payment_url": "https://api.secure.payment.loov-solutions.com/payinit/oa7DZzEd8gwJ5PYQ",
    "reference": "LOC8SXoZuDVEvu1ODxs"
}
```

Mobile SoftPay
--------------

[](#mobile-softpay)

```
50000,
        'operator' => 'XAF',
        "callback_url" => "https://webhook.site/9c647add-6b43-4832-bd5d-db529c7c9b79",
        "name" => "Arolle Fona",
        "email" =>"arolle000@gmail.com",
        "phoneNumber" => "237699009999"
     ];
     $response = (new LoovPay())->setKeys(AppKey MerchantKey)->mobileSoftPay($data);
     return $response;
    }

}
```

Success Response

Upon successfully initiating the mobile payment, the API will respond with a JSON object containing payment information.

```
{
    "error": false,
    "status": "success",
    "amount": "500",
    "fees": 10,
    "message": "Confirm the payment by entering your PIN code and you will receive an SMS. Thank you for using Orange Money services.",
    "reference": "LOMoac3hqZXuBHUHKy8"
}
```

Supported Operators
-------------------

[](#supported-operators)

countryoperatoroperator\_codeBeninMtnmtn-beninBeninMoovmoov-beninCameroonOrangeorange-money-cmCameroonMtnmtn-cmIvory CoastMtnmtn-ciIvory CoastMoovmoov-ciMaliMoovmoov-mlMaliOrangeorange-money-mlSenegalOrangeorange-money-senegalSenegalExpressoexpresso-senegalSenegalFreefree-money-senegalSenegalWave Senegalwave-senegalTogoT-moneyt-money-togoPay Out
-------

[](#pay-out)

```
50000,
        "operator": "orange-money-cm",
        'phoneNumber' => '237699009999',
        "currency" => "XAF"
     ];
     $response = (new LoovPay())->setKeys(AppKey MerchantKey)->payOut($data);
     return $response;
    }

}
```

Success Response

Upon successfully initiating the mobile payment, the API will respond with a JSON object containing payment information.

```
{
    "error": false,
    "status": "success",
    "amount": "50000",
    "reference": "MOMAVzvTY7DLyiRCR38",
    "message": "Transfer of 500 XAF transferred to 237699009999"
}
```

Check Status
------------

[](#check-status)

```
setKeys(AppKey MerchantKey)->checkStatus($reference);
     return $response;
    }

}
```

Success Response

Upon successfully retrieving the payment status, the API will respond with a JSON object containing the payment status information.

```
{
    "error": false,
    "reference": "MOMAVzvTY7DLyiRCR38",
    "amount": "500",
    "currency": "XAF",
    "status": "initiated",
    "date": "2023-08-08 09:08:17",
    "customer": null
}
```

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

If you discover a security vulnerability within Laravel, please send an e-mail to Arolle Fona via . All security vulnerabilities will be promptly addressed.

License
-------

[](#license)

The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

936d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/bde6e832ada2709badb4225eca977c5d9691025da6f8b0e40a92a0a5614fb3c5?d=identicon)[Arolle Fona](/maintainers/Arolle%20Fona)

---

Top Contributors

[![Patouossa](https://avatars.githubusercontent.com/u/18008314?v=4)](https://github.com/Patouossa "Patouossa (9 commits)")

### Embed Badge

![Health badge](/badges/loovpayment-laravel-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/loovpayment-laravel-sdk/health.svg)](https://phpackages.com/packages/loovpayment-laravel-sdk)
```

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

26.2k161.6k7](/packages/bagisto-bagisto)[krayin/laravel-crm

Krayin CRM

22.0k32.8k1](/packages/krayin-laravel-crm)[unopim/unopim

UnoPim Laravel PIM

9.4k1.8k](/packages/unopim-unopim)[blair2004/nexopos

The Free Modern Point Of Sale System build with Laravel, TailwindCSS and Vue.js.

1.2k2.3k](/packages/blair2004-nexopos)[spatie/mailcoach

Self-host Mailcoach

4007.0k](/packages/spatie-mailcoach)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
