PHP code example of nikjaysix / laravel-pinpayments
1. Go to this page and download the library: Download nikjaysix/laravel-pinpayments 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/ */
nikjaysix / laravel-pinpayments example snippets
# Add `LaravelPinPaymentsServiceProvider` to the `providers` array
'providers' => array(
...
NikJaySix\LaravelPinPayments\LaravelPinPaymentsServiceProvider::class,
)
# Add the `LaravelPinPaymentsFacade` to the `aliases` array
'aliases' => array(
...
'PinPayments' => NikJaySix\LaravelPinPayments\LaravelPinPaymentsFacade::class
)
return array(
'key' => ''
);
shell
$ php artisan vendor:publish