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));