【发布时间】:2018-09-10 09:50:36
【问题描述】:
我无法将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
}
}
【问题讨论】:
标签: laravel laravel-5 laravel-notification