<?php
namespace App\Notifications;
use App\Channels\SMSChannel;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
class VerificationCode extends Notification
{
use Queueable;
public function via($notifiable)
{
return [SMSChannel::class];
}
public function toSMS($notifiable)
{
return [
'var1' => (string) $notifiable->code,
'var2' => '',
'var3' => '',
'pattern' => '410811',
];
}
}