trs_matrimony/app/Channels/Sms.php
2024-08-22 09:31:12 +05:30

20 lines
362 B
PHP

<?php
namespace App\Channels;
use Illuminate\Notifications\Notification;
class Sms
{
/**
* @param $notifiable
* @param Notification $notification
* @throws \Twilio\Exceptions\TwilioException
*/
public function send($notifiable, Notification $notification)
{
dd($notifiable, $notification);
//sendSMS();
}
}