PHP code example of weishaypt / laravel-lava-ru

1. Go to this page and download the library: Download weishaypt/laravel-lava-ru library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

weishaypt / laravel-lava-ru example snippets


Weishaypt\LavaRu\LavaRuServiceProvider::class,

'LavaRu' => Weishaypt\LavaRu\Facades\LavaRu::class,

$amount = 100; // Payment`s amount

$url = LavaRu::getPayUrl($amount, $order_id);

$redirect = LavaRu::redirectToPayUrl($amount, $order_id);

$rows = [
    'time' => Carbon::now(),
    'info' => 'Local payment'
];

$url = LavaRu::getPayUrl($amount, $order_id, $desc, $payment_methood, $rows);

$redirect = LavaRu::redirectToPayUrl($amount, $order_id, $desc, $payment_methood, $rows);
 bash
php artisan vendor:publish --provider="Weishaypt\LavaRu\LavaRuServiceProvider"
 php
LavaRu::handle(Request $request)
 php
'searchOrder' => null  // LavaRuController@searchOrder(Request $request)
 php
'paidOrder' => null  // LavaRuController@paidOrder(Request $request, $order)
 php
 Route::get('/lavaru/result', 'LavaRuController@handlePayment');