PHP code example of dgvai / laravel-notification-channel-isms

1. Go to this page and download the library: Download dgvai/laravel-notification-channel-isms 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/ */

    

dgvai / laravel-notification-channel-isms example snippets


// config/services.php
...
'isms' => [
    'token'         =>  env('ISMS_TOKEN'),     // The API-TOKEN generated from ISMS panel
    'sid'           =>  env('ISMS_SID'),       // The SID of your stakeholder
],
...

public function routeNotificationForISMS()
{
    return '+1234567890';
}