PHP code example of mollsoft / laravel-litecoin-module

1. Go to this page and download the library: Download mollsoft/laravel-litecoin-module 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/ */

    

mollsoft / laravel-litecoin-module example snippets


'providers' => ServiceProvider::defaultProviders()->merge([
    ...,
    \Mollsoft\LaravelLitecoinModule\LitecoinServiceProvider::class,
])->toArray(),

'aliases' => Facade::defaultAliases()->merge([
    ...,
    'Litecoin' => \Mollsoft\LaravelLitecoinModule\Facades\Litecoin::class,
])->toArray(),
bash
php artisan litecoin:install
bash
php artisan migrate