PHP code example of adiafora / laravel-notification-bitrix24

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

    

adiafora / laravel-notification-bitrix24 example snippets


    composer 

    Adiafora\Bitrix24\Bitrix24ServiceProvider::class,

    php artisan vendor:publish --provider="Adiafora\Bitrix24\Bitrix24ServiceProvider"

   use Adiafora\Bitrix24\Bitrix24Channel;
   use Adiafora\Bitrix24\Bitrix24Message;
   use Illuminate\Notifications\Notification;
   
   class BitrixNotice extends Notification
   {
       protected $invoice;
       
       public function __construct($invoice)
       {
           $this->invoice = $invoice;
       }
       
       public function via($notifiable)
       {
           return [Bitrix24Channel::class];
       }
   
       public function toBitrix24($notifiable)
       {
           $data = [
               'invoice' => $this->invoice,
           ];
           
           return (new Bitrix24Message)
                       ->view('notice', $data)
                       ->toUser();
       }
   }

    Notification::send(56, new BitrixNotice($invoice));

    Notification::route('bitrix24', '56')
                ->notify(new BitrixNotice($invoice));

    public function routeNotificationForBitrix24(): int
    {
        return $this->bitrix_id;
    }