Skip to content
Advertisement

How to call custom made function usin via parameter in laravel notification?

devs,I am using laravel 8 I create a notification inside that I made my own funciton toTwilio mention below code.

Problem: how can I call that function. I include in return parameter of via() function but it shows me “driver [twilio] not supported.”. I do not register anything anywhere. and I tried to change the name of function still showing error “driver[<fun_name>] not supported.

JavaScript

Advertisement

Answer

Read the official documentation about custom notification channels here: https://laravel.com/docs/8.x/notifications#custom-channels.

First of all You should create a TwilioChannel class to call toTwilio method:

JavaScript

After creating Channel class change notification via method like this:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement