PHP code example of fatihozpolat / laravel-param-pos

1. Go to this page and download the library: Download fatihozpolat/laravel-param-pos 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/ */

    

fatihozpolat / laravel-param-pos example snippets


return [
    'client_code' => env('PARAM_CLIENT_CODE'),
    'client_username' => env('PARAM_CLIENT_USERNAME'),
    'client_password' => env('PARAM_CLIENT_PASSWORD'),
    'guid' => env('PARAM_GUID'),
    'test' => env('PARAM_TEST', true),
];

use FatihOzpolat\Param\Facades\Param;

Param::ks_kart_ekle('Test Kişi', '4446763125813623', '12', '26', 'Test Ziraat Kartı', 'testislemid');
bash
php artisan vendor:publish --tag="param-pos-config"