Я не могу передать sendSms
методу toHistory
. Это всегда установлено как false
. Как я могу сделать это правильно?
class SendMessage extends Notification implements ShouldQueue
{
use Queueable;
public $sendSms;
public function via($notifiable)
{
$this->sendSms = true;
}
public function toHistory($notifiable) {
echo $this->sendSms; //return false
}
}