I got this error while implementing the Hubtel SMS Api.
<?php
namespace App\Http\Controllers\Api;
use Illuminate\Notifications\Notification;
use NotificationChannels\Hubtel\HubtelChannel;
use NotificationChannels\Hubtel\HubtelMessage;
class SendSMS extends Notification
{
public function via($notifiable)
{
return [HubtelChannel::class];
}
public function toSMS($notifiable='yes')
{
// echo "hi";
return (new HubtelMessage)
->from("JabClari")
->to("+923105149080")
->content("Kim Kippo... Sup with you");
}
}
I installed Hubtel SMS channel using this and following proper instructions.
Please help me