Download the PHP package weishaypt/laravel-lava-ru without Composer
On this page you can find all versions of the php package weishaypt/laravel-lava-ru. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package laravel-lava-ru
Laravel payment processor package for LavaRu gateway
Accept payments via LavaRu (lava.ru) using this Laravel framework package (Laravel).
- receive payments, adding just the two callbacks
Laravel >= 11.*, PHP >= 8.2
To use the package for Laravel 10.* use the 3.x branch
To use the package for Laravel 9.* use the 2.x branch
To use the package for Laravel 6.* use the 1.x branch
Installation
Require this package with composer.
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php
Add the FreeKassa
facade to your facades array:
Copy the package config to your local config with the publish command:
Configuration
Once you have published the configuration files, please edit the config file in config/LavaRu.php
.
- Create an account on lava.ru
- Add your project, copy the
project_id
,secret_key
andsecret_key_second
params and paste intoconfig/LavaRu.php
- After the configuration has been published, edit
config/LavaRu.php
- Set the callback static function for
searchOrder
andpaidOrder
- Create route to your controller, and call
LavaRu::handle
method
Usage
1) Generate a payment url or get redirect:
You can add custom fields to your payment:
$desc
and $payment_methood
can be null.
2) Process the request from LavaRu:
Important
You must define callbacks in config/LavaRu.php
to search the order and save the paid order.
Example
The process scheme:
- The request comes from
lava.ru
GET
/POST
http://yourproject.com/LavaRu/result
(with params). - The function
LavaRuController@handlePayment
runs the validation process (auto-validation request params). - The method
searchOrder
will be called (seeconfig/lavaru.php
searchOrder
) to search the order by the unique id. - If the current order status is NOT
paid
in your database, the methodpaidOrder
will be called (seeconfig/lavaru.php
paidOrder
).
Add the route to routes/web.php
:
Note: don't forget to save your full route url (e.g. http://example.com/LavaRu/result ) for your project on lava.ru.
Create the following controller: /app/Http/Controllers/LavaRuController.php
:
Security
If you discover any security related issues, please send me an email at [email protected] instead of using the issue tracker.
Credits
- Weishaypt
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-lava-ru with dependencies
laravel/framework Version 11.*
guzzlehttp/guzzle Version 7.*
ext-json Version *