20 lines
362 B
PHP
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();
|
|
}
|
|
}
|