PHP code example of fatihozpolat / laravel-netgsm

1. Go to this page and download the library: Download fatihozpolat/laravel-netgsm 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-netgsm example snippets


return [
    'url' => env('NETGSM_URL', 'https://api.netgsm.com.tr'),
    'username' => env('NETGSM_USERNAME'),
    'password' => env('NETGSM_PASSWORD'),
    'header' => env('NETGSM_HEADER'),
    'tenant' => env('NETGSM_TENANT'),
    'language' => env('NETGSM_LANGUAGE', 'TR'),
];
bash
php artisan vendor:publish --tag="netgsm-config"