PHP code example of deniztezcan / laravel-liqpay
1. Go to this page and download the library: Download deniztezcan/laravel-liqpay 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/ */
deniztezcan / laravel-liqpay example snippets
'providers' => [
//other things here
DenizTezcan\LiqPay\LiqPayServiceProvider::class,
];
'aliases' => [
//other things here
'LiqPay' => DenizTezcan\LiqPay\Facades\LiqPay::class,
];
php artisan vendor:publish --provider="DenizTezcan\LiqPay\LiqPayServiceProvider"