PHP code example of csgt / notification-channel-direkto

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

    

csgt / notification-channel-direkto example snippets


// config/app.php
'providers' => [
    ...
    NotificationChannels\Direkto\DirektoProvider::class,
],

// config/services.php
...
'direkto' => [
    'account_url'   => env('DIREKTO_ACCOUNT_URL'),
    'account_token' => env('DIREKTO_AUTH_TOKEN'),
],
...

use NotificationChannels\Direkto\DirektoChannel;
use NotificationChannels\Direkto\DirektoMessage;
use Illuminate\Notifications\Notification;

class AccountApproved extends Notification
{
    public function via($notifiable)
    {
        return [DirektoChannel::class];
    }

    public function toDirekto($notifiable)
    {
        return (new DirektoMessage())
            ->content("Your {$notifiable->service} account was approved!");
    }
}

public function routeNotificationForDirekto()
{
    return $this->mobile;
}